X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverMED%2FDriverMED_R_SMESHDS_Mesh.h;h=ac3d0b1305b8d635cb051c5713d87bdd1b469b26;hp=fe1322b12df7fe02aa0628301a099ce6438fb30b;hb=c3dcb1d5ce71049bef3434d77e015095d92ff646;hpb=e4737e85f0da6d3f90fd08f6be1c2825195fe16f diff --git a/src/DriverMED/DriverMED_R_SMESHDS_Mesh.h b/src/DriverMED/DriverMED_R_SMESHDS_Mesh.h index fe1322b12..ac3d0b130 100644 --- a/src/DriverMED/DriverMED_R_SMESHDS_Mesh.h +++ b/src/DriverMED/DriverMED_R_SMESHDS_Mesh.h @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -36,12 +36,14 @@ class SMESHDS_Mesh; class SMESHDS_Group; class SMESHDS_SubMesh; +typedef std::pair< std::string, SMDSAbs_ElementType > TNameAndType; + class DriverMED_R_SMESHDS_Mesh: public Driver_SMESHDS_Mesh { public: virtual Status Perform(); - std::list GetGroupNames(); + std::list< TNameAndType > GetGroupNamesAndTypes(); void GetGroup(SMESHDS_Group* theGroup); void CreateAllSubMeshes(); void GetSubMesh(SMESHDS_SubMesh* theSubMesh, const int theId); @@ -49,6 +51,18 @@ class DriverMED_R_SMESHDS_Mesh: public Driver_SMESHDS_Mesh std::list GetMeshNames(Status& theStatus); void SetMeshName(std::string theMeshName); + private: + /*! + * \brief Ensure aFamily has required ID + * \param aFamily - a family to check + * \param anID - an ID aFamily should have + * \retval bool - true if successful + */ + bool checkFamilyID(DriverMED_FamilyPtr & aFamily, int anID) const; + + bool buildMeshGrille(const MED::PWrapper& theWrapper, + const MED::PMeshInfo& theMeshInfo); + private: std::string myMeshName; std::map myFamilies;