Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/smesh.git] / src / SMESHDS / SMESHDS_Hypothesis.cxx
1 using namespace std;
2 //=============================================================================
3 // File      : SMESHDS_Hypothesis.cxx
4 // Created   : sam mai 18 08:08:50 CEST 2002
5 // Author    : Paul RASCLE, EDF
6 // Project   : SALOME
7 // Copyright : EDF 2002
8 // $Header$
9 //=============================================================================
10 using namespace std;
11
12 #include "SMESHDS_Hypothesis.hxx"
13
14
15 //=============================================================================
16 /*!
17  * 
18  */
19 //=============================================================================
20
21 SMESHDS_Hypothesis::SMESHDS_Hypothesis(int hypId)
22 {
23 //   MESSAGE("SMESHDS_Hypothesis::SMESHDS_Hypothesis");
24   _hypId = hypId;
25   _name = "generic";
26 //   SCRUTE(_name);
27 //   SCRUTE(_hypId);
28 }
29
30 //=============================================================================
31 /*!
32  * 
33  */
34 //=============================================================================
35
36 SMESHDS_Hypothesis::~SMESHDS_Hypothesis()
37 {
38 //   MESSAGE("SMESHDS_Hypothesis::~SMESHDS_Hypothesis");
39 }
40
41 //=============================================================================
42 /*!
43  * 
44  */
45 //=============================================================================
46
47 const char* SMESHDS_Hypothesis::GetName()
48 {
49 //   MESSAGE("SMESHDS_Hypothesis::GetName");
50 //   SCRUTE(_name);
51 //   SCRUTE(&_name);
52   return _name.c_str();
53 }
54
55 //=============================================================================
56 /*!
57  * 
58  */
59 //=============================================================================
60
61 int SMESHDS_Hypothesis::GetID()
62 {
63 //   MESSAGE("SMESHDS_Hypothesis::GetId");
64 //   SCRUTE(_hypId);
65   return _hypId;
66 }
67
68 //=============================================================================
69 /*!
70  * 
71  */
72 //=============================================================================
73
74 int SMESHDS_Hypothesis::GetType()
75 {
76 //   MESSAGE("SMESHDS_Hypothesis::GetType");
77 //   SCRUTE(_type);
78   return _type;
79 }
80