Salome HOME
yfr : Merge with v1.2
[modules/smesh.git] / src / SMESH_I / SMESH_Regular_1D_i.hxx
1 //=============================================================================
2 // File      : SMESH_Regular_1D_i.hxx
3 // Created   : jeu mai 16 13:25:50 CEST 2002
4 // Author    : Paul RASCLE, EDF
5 // Project   : SALOME
6 // Copyright : EDF 2002
7 // $Header$
8 //=============================================================================
9
10 #ifndef _SMESH_REGULAR_1D_I_HXX_
11 #define _SMESH_REGULAR_1D_I_HXX_
12
13 #include <SALOMEconfig.h>
14 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
15
16 #include "SMESH_1D_Algo_i.hxx"
17
18 #include "SMESH_Regular_1D.hxx"
19
20 class SMESH_Regular_1D_i:
21   public POA_SMESH::SMESH_Regular_1D,
22   public SMESH_1D_Algo_i
23 {
24 public:
25   SMESH_Regular_1D_i(const char* anHyp,
26                      int studyId,
27                      ::SMESH_Gen* genImpl);
28
29   virtual ~SMESH_Regular_1D_i();
30  
31 protected:
32   virtual void SetImpl(::SMESH_Regular_1D* impl);
33
34   ::SMESH_Regular_1D* _impl;
35 };
36
37 #endif