Salome HOME
This commit was generated by cvs2git to create branch 'IMPORT'.
[modules/smesh.git] / src / SMESH_I / SMESH_MaxElementArea_i.hxx
1 //=============================================================================
2 // File      : SMESH_MaxElementArea_i.hxx
3 // Created   : sam mai 18 23:14:29 CEST 2002
4 // Author    : Paul RASCLE, EDF
5 // Project   : SALOME
6 // Copyright : EDF 2002
7 // $Header$
8 //=============================================================================
9
10 #ifndef _SMESH_MAXELEMENTAREA_I_HXX_
11 #define _SMESH_MAXELEMENTAREA_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_MaxElementArea.hxx"
19
20 class SMESH_MaxElementArea_i:
21   public POA_SMESH::SMESH_MaxElementArea,
22   public SMESH_Hypothesis_i
23 {
24 public:
25   SMESH_MaxElementArea_i(const char* anHyp,
26                          int studyId,
27                          ::SMESH_Gen* genImpl);
28   virtual ~SMESH_MaxElementArea_i();
29
30   void SetMaxElementArea(CORBA::Double area)
31     throw (SALOME::SALOME_Exception);
32
33   CORBA::Double GetMaxElementArea();
34
35 protected:
36   ::SMESH_MaxElementArea* _impl;
37 };
38
39 #endif