1 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : SMESH_MEDSupport_i.hxx
27 #ifndef _MED_SMESH_MEDSUPPORT_I_HXX_
28 #define _MED_SMESH_MEDSUPPORT_I_HXX_
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(MED)
34 #include "SMESHDS_Mesh.hxx"
35 #include "SMESHDS_SubMesh.hxx"
36 #include "SMDS_MeshElement.hxx"
37 #include "SMDS_MeshNode.hxx"
39 #include "SMESH_MEDSupport_i.hxx"
40 #include "SALOME_GenericObj_i.hh"
41 class SMESH_subMesh_i;
43 class SMESH_MEDSupport_i:
44 public virtual POA_SALOME_MED::SUPPORT, public virtual SALOME::GenericObj_i
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);
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);
60 getNumberOfElements(SALOME_MED::medGeometryElement geomElement)
61 throw(SALOME::SALOME_Exception);
63 CORBA::Long getNumberOfTypes() throw (SALOME::SALOME_Exception);
65 SALOME_MED::long_array *
66 getNumber(SALOME_MED::medGeometryElement geomElement)
67 throw(SALOME::SALOME_Exception);
70 * Same function as getNumber.
72 SALOME_MED::long_array *
73 getNumberFromFile(SALOME_MED::medGeometryElement geomElement)
74 throw(SALOME::SALOME_Exception);
76 SALOME_MED::long_array * getNumberIndex()
77 throw(SALOME::SALOME_Exception);
80 getNumberOfGaussPoint(SALOME_MED::medGeometryElement geomElement)
81 throw(SALOME::SALOME_Exception);
83 SALOME_MED::long_array* getNumbersOfGaussPoint()
84 throw (SALOME::SALOME_Exception);
86 SALOME_MED::medGeometryElement_array *getTypes()
87 throw(SALOME::SALOME_Exception);
89 void getBoundaryElements() throw (SALOME::SALOME_Exception);
91 CORBA::Long getCorbaIndex() throw(SALOME::SALOME_Exception);
93 SALOME_MED::SUPPORT::supportInfos * getSupportGlobal()
94 throw (SALOME::SALOME_Exception);
96 void createSeq() throw(SALOME::SALOME_Exception);
98 public: //public field
99 const SMESHDS_SubMesh * _subMeshDS;
100 ::SMESH_subMesh_i * _subMesh_i;
102 SMESHDS_Mesh * _meshDS;
105 bool _isOnAllElements;
109 SALOME_MED::medEntityMesh _entity;
110 SALOME_MED::medGeometryElement * _geometricType;
111 int _numberOfGeometricType;
114 SMESH_MEDSupport_i();
115 ~SMESH_MEDSupport_i();
118 #endif /* _MED_MEDSUPPORT_I_HXX_ */