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