Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMESHDS / SMESHDS_Group.cxx
index 29d7db4f492652c6fd98977112125f98f2e5aba1..28a2a387c1a1e07a45f80bc89576164ce277edf7 100644 (file)
 #include <SMESHDS_Group.hxx>
 #include <SMESHDS_Mesh.hxx>
 
+using namespace std;
+
 //=============================================================================
 /*!
  *  
  */
 //=============================================================================
 
-SMESHDS_Group::SMESHDS_Group (const SMESHDS_Mesh*       theMesh,
+SMESHDS_Group::SMESHDS_Group (const int                 theID,
+                              const SMESHDS_Mesh*       theMesh,
                               const SMDSAbs_ElementType theType)
-     : SMDS_MeshGroup(theMesh,theType), myStoreName(""),
+     : SMDS_MeshGroup(theMesh,theType),
+       myID(theID), myStoreName(""),
        myCurIndex(0), myCurID(0)
 {
 }