X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_R_SMDS_Mesh.h;h=42de629ca5ca5b3b72397244c16cf386d6b0591a;hb=bfd1d67c062ad9f60bc5315afaaed0d9f272b006;hp=a50ee47f69bed895d59587187185aa1b7f977e0a;hpb=7a65c9fad427b1ccba6b9ccae612296e5092a324;p=modules%2Fsmesh.git diff --git a/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h b/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h index a50ee47f6..42de629ca 100644 --- a/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h +++ b/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -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