Salome HOME
Add interface for keeping information about performed operation of extrusion.
[modules/smesh.git] / src / SMESH / SMESH_MeshEditor.hxx
index 0dfd8c09d0ce31e7cba87ae62d5983e0b0a0d5e1..fdbda16d08b5a36e568f3f31bbb0f03de1819ee8 100644 (file)
@@ -35,6 +35,7 @@
 
 #include <list>
 #include <map>
+#include <TColStd_DataMapOfIntegerListOfInteger.hxx>
 
 class SMDS_MeshElement;
 class SMDS_MeshFace;
@@ -304,11 +305,15 @@ class SMESH_MeshEditor {
 
   SMESHDS_Mesh * GetMeshDS() { return myMesh->GetMeshDS(); }
 
+  const TColStd_DataMapOfIntegerListOfInteger& GetExtrusionHistory() const
+    { return myExtrusionHistory; }
 
  private:
 
   SMESH_Mesh * myMesh;
 
+  TColStd_DataMapOfIntegerListOfInteger myExtrusionHistory;
+
 };
 
 #endif