X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2FSMESH_Group.hxx;h=26493e4e085296b3372c71cbdcc262bdaff916f9;hp=5147a44d79bb1fa32df646ab5dfe9bf648495b8a;hb=65482a36f681e66ec4f04213b83453adbc36a281;hpb=bc37f0b49f9713347749b6325e1c7062de8857ae diff --git a/src/SMESH/SMESH_Group.hxx b/src/SMESH/SMESH_Group.hxx index 5147a44d7..26493e4e0 100644 --- a/src/SMESH/SMESH_Group.hxx +++ b/src/SMESH/SMESH_Group.hxx @@ -30,25 +30,28 @@ #include #include -using namespace std; +#include -class SMESHDS_Group; + +class SMESHDS_GroupBase; class SMESH_Mesh; class SMESH_Group { public: - SMESH_Group (const SMESH_Mesh* theMesh, + SMESH_Group (int theID, + const SMESH_Mesh* theMesh, const SMDSAbs_ElementType theType, - const char* theName); + const char* theName, + const TopoDS_Shape& theShape = TopoDS_Shape()); ~SMESH_Group (); void SetName (const char* theName) { myName = theName; } const char* GetName () const { return myName.c_str(); } - SMESHDS_Group * GetGroupDS () { return myGroupDS; } + SMESHDS_GroupBase * GetGroupDS () { return myGroupDS; } private: SMESH_Group (const SMESH_Group& theOther); @@ -56,8 +59,8 @@ class SMESH_Group SMESH_Group& operator = (const SMESH_Group& theOther); // prohibited assign operator - SMESHDS_Group * myGroupDS; - string myName; + SMESHDS_GroupBase * myGroupDS; + std::string myName; };