X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FDriverUNV%2FDriverUNV_R_SMDS_Mesh.h;fp=src%2FDriverUNV%2FDriverUNV_R_SMDS_Mesh.h;h=42de629ca5ca5b3b72397244c16cf386d6b0591a;hb=4c16067d4281f56bd07d3f92fb63fff9c0c1d169;hp=4f7407dbb1704bdda2894a96e9ab2e5dcd8e26b0;hpb=88141f757b048eaa5aae0be49faaf274448bbcaf;p=modules%2Fsmesh.git diff --git a/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h b/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h index 4f7407dbb..42de629ca 100644 --- a/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h +++ b/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h @@ -30,32 +30,22 @@ #include -class SMDS_Mesh; class SMDS_MeshGroup; - -typedef std::map TGroupNamesMap; -typedef std::map TGroupIdMap; - typedef std::map TGroupNamesMap; -typedef std::map TGroupIdMap; class MESHDRIVERUNV_EXPORT DriverUNV_R_SMDS_Mesh: public Driver_SMDS_Mesh { public: - DriverUNV_R_SMDS_Mesh():Driver_SMDS_Mesh(),myGroup(0) {}; + DriverUNV_R_SMDS_Mesh():Driver_SMDS_Mesh() {}; ~DriverUNV_R_SMDS_Mesh(); - + virtual Status Perform(); - const SMDS_MeshGroup* GetGroup() const { return myGroup;} - const TGroupNamesMap& GetGroupNamesMap() const { return myGroupNames; } - const TGroupIdMap& GetGroupIdMap() const { return myGroupId; } + TGroupNamesMap& GetGroupNamesMap() { return myGroupNames; } private: - SMDS_MeshGroup* myGroup; TGroupNamesMap myGroupNames; - TGroupIdMap myGroupId; }; #endif