Salome HOME
91847f60c0c1b5cb86698b54965ee345d22155fb
[modules/geom.git] / NMTTools_CoupleOfShape.cxx
1 // File:        NMTTools_CoupleOfShape.cxx
2 // Created:     Wed Jan 28 15:06:11 2004
3 // Author:      Peter KURNEV
4 //              <pkv@irinox>
5
6 #include <NMTTools_CoupleOfShape.ixx>
7
8 //=======================================================================
9 // function: NMTTools_CoupleOfShape::NMTTools_CoupleOfShape
10 // purpose: 
11 //=======================================================================
12   NMTTools_CoupleOfShape::NMTTools_CoupleOfShape()
13 {}
14 //=======================================================================
15 // function: SetShape1
16 // purpose: 
17 //=======================================================================
18   void NMTTools_CoupleOfShape::SetShape1(const TopoDS_Shape& aS)
19 {
20   myShape1=aS;
21 }
22 //=======================================================================
23 // function: SetShape2
24 // purpose: 
25 //=======================================================================
26   void NMTTools_CoupleOfShape::SetShape2(const TopoDS_Shape& aS)
27 {
28   myShape2=aS;
29 }
30 //=======================================================================
31 // function: Shape1
32 // purpose: 
33 //=======================================================================
34   const TopoDS_Shape& NMTTools_CoupleOfShape::Shape1()const
35 {
36   return myShape1;
37 }
38 //=======================================================================
39 // function: Shape2
40 // purpose: 
41 //=======================================================================
42   const TopoDS_Shape& NMTTools_CoupleOfShape::Shape2()const
43 {
44   return myShape2;
45 }