Salome HOME
SALOME PAL V1_4_1
[modules/smesh.git] / src / SMDS / SMDS_MeshElementIDFactory.hxx
index 8814676335d34505bea659a419044d47232ecfe0..f987eaed2d4c7bb67ec51b69441dbe03f3779425 100644 (file)
@@ -28,7 +28,6 @@
 #define _SMDS_MeshElementIDFactory_HeaderFile
 
 #include "SMDS_MeshIDFactory.hxx"
-#include <SMDS_Iterator.hxx>
 
 #include <map>
 using namespace std;
@@ -41,6 +40,8 @@ class SMDS_MeshElementIDFactory:public SMDS_MeshIDFactory
        SMDS_MeshElementIDFactory();
        bool BindID(int ID, SMDS_MeshElement * elem);
        SMDS_MeshElement * MeshElement(int ID);
+       virtual int GetFreeID();
+       virtual void ReleaseID(int ID);
   private:
        map<int, SMDS_MeshElement *> myIDElements;