2003-07-10 14:13:02 +06:00
|
|
|
// SMESH DriverMED : driver to read and write 'med' files
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
2006-06-01 17:39:17 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 14:13:02 +06:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : DriverMED_R_SMESHDS_Mesh.h
|
|
|
|
// Module : SMESH
|
|
|
|
|
2003-03-07 19:55:31 +05:00
|
|
|
#ifndef _INCLUDE_DRIVERMED_R_SMESHDS_MESH
|
|
|
|
#define _INCLUDE_DRIVERMED_R_SMESHDS_MESH
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_DriverMED.hxx"
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "Driver_SMESHDS_Mesh.h"
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "DriverMED_Family.h"
|
2003-03-07 19:55:31 +05:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
#include <list>
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
class SMESHDS_Mesh;
|
2004-06-18 14:34:31 +06:00
|
|
|
class SMESHDS_Group;
|
|
|
|
class SMESHDS_SubMesh;
|
|
|
|
|
2005-10-11 19:39:02 +06:00
|
|
|
typedef std::pair< std::string, SMDSAbs_ElementType > TNameAndType;
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class MESHDRIVERMED_EXPORT DriverMED_R_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
|
2003-09-04 18:03:27 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
public:
|
2004-12-01 15:48:31 +05:00
|
|
|
virtual Status Perform();
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-10-11 19:39:02 +06:00
|
|
|
std::list< TNameAndType > GetGroupNamesAndTypes();
|
2004-06-18 14:34:31 +06:00
|
|
|
void GetGroup(SMESHDS_Group* theGroup);
|
|
|
|
void CreateAllSubMeshes();
|
|
|
|
void GetSubMesh(SMESHDS_SubMesh* theSubMesh, const int theId);
|
2003-03-07 19:55:31 +05:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
std::list<std::string> GetMeshNames(Status& theStatus);
|
|
|
|
void SetMeshName(std::string theMeshName);
|
2003-03-07 19:55:31 +05:00
|
|
|
|
2005-10-11 19:39:02 +06:00
|
|
|
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;
|
|
|
|
|
2006-06-01 17:39:17 +06:00
|
|
|
bool buildMeshGrille(const MED::PWrapper& theWrapper,
|
|
|
|
const MED::PMeshInfo& theMeshInfo);
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
private:
|
2004-12-01 15:48:31 +05:00
|
|
|
std::string myMeshName;
|
|
|
|
std::map<int, DriverMED_FamilyPtr> myFamilies;
|
2003-03-07 19:55:31 +05:00
|
|
|
|
|
|
|
};
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2003-03-07 19:55:31 +05:00
|
|
|
#endif
|