smesh/src/DriverMED/DriverMED_W_SMESHDS_Mesh.h

93 lines
2.7 KiB
C
Raw Normal View History

2016-03-18 22:10:20 +05:00
// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// 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
2014-02-20 18:25:37 +06:00
// version 2.1 of the License, or (at your option) any later version.
2003-07-10 14:13:02 +06:00
//
2012-08-09 16:03:55 +06:00
// 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.
2003-07-10 14:13:02 +06:00
//
2012-08-09 16:03:55 +06:00
// 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
2003-07-10 14:13:02 +06:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2003-07-10 14:13:02 +06:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH DriverMED : driver to read and write 'med' files
2003-07-10 14:13:02 +06:00
// File : DriverMED_W_SMESHDS_Mesh.h
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
#ifndef _INCLUDE_DRIVERMED_W_SMESHDS_MESH
#define _INCLUDE_DRIVERMED_W_SMESHDS_MESH
#include "SMESH_DriverMED.hxx"
2004-12-01 15:48:31 +05:00
#include "Driver_SMESHDS_Mesh.h"
#include "MED_Common.hxx"
#include <string>
2004-06-18 14:34:31 +06:00
#include <list>
#include <map>
#include <vector>
2004-12-01 15:48:31 +05:00
class SMESHDS_Mesh;
class SMESHDS_GroupBase;
2004-06-18 14:34:31 +06:00
class SMESHDS_SubMesh;
class SMDS_MeshElement;
2004-06-18 14:34:31 +06:00
class MESHDRIVERMED_EXPORT DriverMED_W_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
2003-09-04 18:03:27 +06:00
{
2004-06-18 14:34:31 +06:00
public:
2004-06-18 14:34:31 +06:00
DriverMED_W_SMESHDS_Mesh();
void SetFile(const std::string& theFileName);
void SetAutoDimension(bool toFindOutDimension) { myAutoDimension = toFindOutDimension; }
2004-06-18 14:34:31 +06:00
void AddGroupOfNodes();
void AddGroupOfEdges();
void AddGroupOfFaces();
void AddGroupOfVolumes();
2012-08-09 16:03:55 +06:00
void AddGroupOf0DElems();
void AddGroupOfBalls();
void AddAllToGroup();
2004-06-18 14:34:31 +06:00
/*! functions to prepare adding one mesh
*/
2004-12-01 15:48:31 +05:00
void AddGroup(SMESHDS_GroupBase * theGroup);
2004-06-18 14:34:31 +06:00
void AddAllSubMeshes();
void AddSubMesh(SMESHDS_SubMesh* theSubMesh, int theID);
void AddODOnVertices(bool toAdd) { myAddODOnVertices = toAdd; }
static bool getNodesOfMissing0DOnVert(SMESHDS_Mesh* mesh,
std::vector<const SMDS_MeshElement*>& nodes);
2004-06-18 14:34:31 +06:00
/*! add one mesh
*/
2004-12-01 15:48:31 +05:00
virtual Status Perform();
2004-06-18 14:34:31 +06:00
private:
2004-12-01 15:48:31 +05:00
std::list<SMESHDS_GroupBase*> myGroups;
2004-06-18 14:34:31 +06:00
bool myAllSubMeshes;
std::vector<SMESHDS_SubMesh*> mySubMeshes;
2004-06-18 14:34:31 +06:00
bool myDoGroupOfNodes;
bool myDoGroupOfEdges;
bool myDoGroupOfFaces;
bool myDoGroupOfVolumes;
2012-08-09 16:03:55 +06:00
bool myDoGroupOf0DElems;
bool myDoGroupOfBalls;
bool myAutoDimension;
bool myAddODOnVertices;
bool myDoAllInGroups;
};
2004-12-01 15:48:31 +05:00
#endif