Salome HOME
'Extrusion Along Path' dialog box : rearrange widgets
[modules/smesh.git] / src / DriverMED / DriverMED_W_SMESHDS_Mesh.h
1 //  SMESH DriverMED : driver to read and write 'med' files
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : DriverMED_W_SMESHDS_Mesh.h
25 //  Module : SMESH
26
27 #ifndef _INCLUDE_DRIVERMED_W_SMESHDS_MESH
28 #define _INCLUDE_DRIVERMED_W_SMESHDS_MESH
29
30 #include "Driver_SMESHDS_Mesh.h"
31 #include "MED_Factory.hxx"
32
33 #include <string>
34 #include <list>
35 #include <map>
36
37 class SMESHDS_Mesh;
38 class SMESHDS_GroupBase;
39 class SMESHDS_SubMesh;
40
41 class DriverMED_W_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
42 {
43   public:
44
45   DriverMED_W_SMESHDS_Mesh();
46
47   virtual void SetFile(const std::string& theFileName);
48   void SetFile(const std::string& theFileName, MED::EVersion theId);
49
50   /*! sets file name; only for usage with Add(), not Write()
51    */
52   void AddGroupOfNodes();
53   void AddGroupOfEdges();
54   void AddGroupOfFaces();
55   void AddGroupOfVolumes();
56
57   /*! functions to prepare adding one mesh
58    */
59   void SetMeshName(const std::string& theMeshName);
60   void AddGroup(SMESHDS_GroupBase * theGroup);
61   void AddAllSubMeshes();
62   void AddSubMesh(SMESHDS_SubMesh* theSubMesh, int theID);
63
64   /*! add one mesh
65    */
66   virtual Status Perform();
67
68  private:
69
70   MED::PWrapper myMed;
71   std::string myMeshName;
72   std::list<SMESHDS_GroupBase*> myGroups;
73   bool myAllSubMeshes;
74   std::map<int,SMESHDS_SubMesh*> mySubMeshes;
75   bool myDoGroupOfNodes;
76   bool myDoGroupOfEdges;
77   bool myDoGroupOfFaces;
78   bool myDoGroupOfVolumes;
79 };
80
81
82 #endif
83