Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/smesh.git] / src / SMESH_I / SMESH_Hypothesis_i.hxx
1 //=============================================================================
2 // File      : SMESH_Hypothesis_i.hxx
3 // Created   : lun mai  6 13:42:08 CEST 2002
4 // Author    : Paul RASCLE, EDF
5 // Project   : SALOME
6 // Copyright : EDF 2002
7 // $Header$
8 //=============================================================================
9
10 #ifndef _SMESH_HYPOTHESIS_I_HXX_
11 #define _SMESH_HYPOTHESIS_I_HXX_
12
13 #include <SALOMEconfig.h>
14 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
15
16 class SMESH_Gen;
17 class SMESH_Hypothesis;
18
19 class SMESH_Hypothesis_i:
20   public POA_SMESH::SMESH_Hypothesis
21 {
22 public:
23   SMESH_Hypothesis_i();
24   virtual ~SMESH_Hypothesis_i();
25
26   char* GetName();
27   CORBA::Long GetId();
28
29 protected:
30   ::SMESH_Hypothesis* _baseImpl;
31   ::SMESH_Gen* _genImpl;
32   int _id;
33 };
34
35 #endif