Salome HOME
yfr : Merge with v1.2
[modules/smesh.git] / src / SMDS / SMDS_Position.lxx
1 // File:        SMDS_Position.lxx
2 // Created:     Mon May 13 13:47:03 2002
3 // Author:      Jean-Michel BOULCOURT
4 //              <jmb@localhost.localdomain>
5
6 //=======================================================================
7 //function : GetTypeOfPosition
8 //purpose  : 
9 //=======================================================================
10
11 inline SMDS_TypeOfPosition SMDS_Position::GetTypeOfPosition() const
12 {
13   return myType;
14 }
15
16 //=======================================================================
17 //function : SetShapeId
18 //purpose  : 
19 //=======================================================================
20
21 inline void SMDS_Position::SetShapeId(const Standard_Integer aShapeId)
22 {
23   myShapeId = aShapeId;
24 }
25
26 //=======================================================================
27 //function : GetShapeId
28 //purpose  : 
29 //=======================================================================
30
31 inline Standard_Integer SMDS_Position::GetShapeId() const
32 {
33   return myShapeId;
34 }