X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_R_SMDS_Mesh.h;h=aa28138f5dcd218dc5f74ee43f8badf7749ce379;hb=7e714e8fc0d0884011007c9daed6e6e492402693;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..aa28138f5 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-2023 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