Salome HOME
PAL12992. Add type TIDSortedElemSet to be used to assure predictability of edition
[modules/smesh.git] / src / SMESH / SMESH_MeshEditor.hxx
index 9373b832c19604c6c392dfbc9f7d0d9a64580f14..3c891d1a3fc3024ccad6f15e7e63dba8ddb07dab 100644 (file)
@@ -55,7 +55,17 @@ class gp_Vec;
 class gp_Pnt;
 
 class SMESH_MeshEditor {
- public:
+public:
+
+  // define a set of elements sorted by ID, to be used to assure
+  // predictability of edition
+  struct TIDCompare {
+    bool operator () (const SMDS_MeshElement* e1, const SMDS_MeshElement* e2)
+    { return e1->GetID() < e2->GetID(); }
+  };
+  typedef set< const SMDS_MeshElement*, TIDCompare > TIDSortedElemSet;
+  
+public:
 
   SMESH_MeshEditor( SMESH_Mesh* theMesh );