Salome HOME
yfr : Merge with v1.2
[modules/smesh.git] / src / SMESH_I / SMESH_Hypothesis_i.cxx
1 using namespace std;
2 //=============================================================================
3 // File      : SMESH_Hypothesis_i.cxx
4 // Created   : lun mai  6 13:42:11 CEST 2002
5 // Author    : Paul RASCLE, EDF
6 // Project   : SALOME
7 // Copyright : EDF 2002
8 // $Header$
9 //=============================================================================
10 using namespace std;
11
12 #include "SMESH_Hypothesis_i.hxx"
13 #include "SMESH_Hypothesis.hxx"
14 #include "SMESH_Gen.hxx"
15 #include "utilities.h"
16
17 //=============================================================================
18 /*!
19  *  
20  */
21 //=============================================================================
22
23 SMESH_Hypothesis_i::SMESH_Hypothesis_i()
24 {
25   MESSAGE("SMESH_Hypothesis_i");
26 };
27
28 //=============================================================================
29 /*!
30  *  
31  */
32 //=============================================================================
33
34 SMESH_Hypothesis_i::~SMESH_Hypothesis_i()
35 {
36   MESSAGE("~SMESH_Hypothesis_i");
37 };
38
39 //=============================================================================
40 /*!
41  *  
42  */
43 //=============================================================================
44
45 char* SMESH_Hypothesis_i::GetName()
46 {
47   MESSAGE("GetName");
48   return CORBA::string_dup(_baseImpl->GetName());
49 //   const char* name = _baseImpl->GetName();
50 //   SCRUTE(name);
51 //   return CORBA::string_dup(name);
52 };
53
54 //=============================================================================
55 /*!
56  *  
57  */
58 //=============================================================================
59
60 CORBA::Long SMESH_Hypothesis_i::GetId()
61 {
62   MESSAGE("GetId");
63   return _baseImpl->GetID();
64 }