Skip to content
Snippets Groups Projects
Commit c00bce8a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Add IntegrationPoint to MeshItemType's.

parent 1deee009
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment