From c00bce8a5043f59bf492837025dba268667ffcc1 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Mon, 30 Jan 2017 00:17:13 +0100 Subject: [PATCH] [MeL] Add IntegrationPoint to MeshItemType's. --- MeshLib/Location.cpp | 1 + MeshLib/Location.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MeshLib/Location.cpp b/MeshLib/Location.cpp index 092ba6d0971..aebe09d3e18 100644 --- a/MeshLib/Location.cpp +++ b/MeshLib/Location.cpp @@ -21,6 +21,7 @@ std::ostream& operator<<(std::ostream& os, MeshItemType const& t) case MeshItemType::Edge: return os << "E"; case MeshItemType::Face: return os << "F"; case MeshItemType::Cell: return os << "C"; + case MeshItemType::IntegrationPoint: return os << "I"; }; return os; } diff --git a/MeshLib/Location.h b/MeshLib/Location.h index 64ddc761c04..9209ce7be3c 100644 --- a/MeshLib/Location.h +++ b/MeshLib/Location.h @@ -18,7 +18,7 @@ namespace MeshLib { -enum class MeshItemType { Node, Edge, Face, Cell }; +enum class MeshItemType { Node, Edge, Face, Cell, IntegrationPoint }; std::ostream& operator<<(std::ostream& os, MeshItemType const& t); -- GitLab