Salome HOME
update
[modules/smesh.git] / src / SMESH_I / SMESH_MEDSupport_i.hxx
1 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
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 : SMESH_MEDSupport_i.hxx
25 // Module : SMESH
26
27 #ifndef _MED_SMESH_MEDSUPPORT_I_HXX_
28 #define _MED_SMESH_MEDSUPPORT_I_HXX_
29
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(MED)
32 #include <string>
33
34 #include "SMESHDS_Mesh.hxx"
35 #include "SMESHDS_SubMesh.hxx"
36 #include "SMDS_MeshElement.hxx"
37 #include "SMDS_MeshNode.hxx"
38
39 #include "SMESH_MEDSupport_i.hxx"
40
41 class SMESH_subMesh_i;
42
43 class SMESH_MEDSupport_i:
44         public POA_SALOME_MED::SUPPORT, public PortableServer::RefCountServantBase
45 {
46   public:
47
48 // Constructors and associated internal methods
49         SMESH_MEDSupport_i(SMESH_subMesh_i * sm,
50                 string name, string description, SALOME_MED::medEntityMesh entity);
51         SMESH_MEDSupport_i(const SMESH_MEDSupport_i & s);
52
53 // IDL Methods
54         char *getName() throw(SALOME::SALOME_Exception);
55         char *getDescription() throw(SALOME::SALOME_Exception);
56         SALOME_MED::MESH_ptr getMesh() throw(SALOME::SALOME_Exception);
57         CORBA::Boolean isOnAllElements() throw(SALOME::SALOME_Exception);
58         SALOME_MED::medEntityMesh getEntity() throw(SALOME::SALOME_Exception);
59         CORBA::Long getNumberOfElements(SALOME_MED::medGeometryElement geomElement)
60                 throw(SALOME::SALOME_Exception);
61         Engines::long_array * getNumber(SALOME_MED::medGeometryElement geomElement)
62                 throw(SALOME::SALOME_Exception);
63         Engines::long_array * getNumberIndex() throw(SALOME::SALOME_Exception);
64         CORBA::Long getNumberOfGaussPoints(SALOME_MED::
65                 medGeometryElement geomElement) throw(SALOME::SALOME_Exception);
66         SALOME_MED::medGeometryElement_array *
67                 getTypes() throw(SALOME::SALOME_Exception);
68         CORBA::Long getCorbaIndex() throw(SALOME::SALOME_Exception);
69         void createSeq() throw(SALOME::SALOME_Exception);
70
71   public: //public field
72         const SMESHDS_SubMesh * _subMeshDS;
73         ::SMESH_subMesh_i * _subMesh_i;
74
75         SMESHDS_Mesh * _meshDS;
76         string _name;
77         string _description;
78         bool _isOnAllElements;
79         bool _seqNumber;
80         int _seqLength;
81
82         SALOME_MED::medEntityMesh _entity;
83         SALOME_MED::medGeometryElement * _geometricType;
84         int _numberOfGeometricType;
85
86   protected:
87         SMESH_MEDSupport_i();
88         ~SMESH_MEDSupport_i();
89 };
90
91 #endif /* _MED_MEDSUPPORT_I_HXX_ */