Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_NodeSet.cxx
1 // File:        StepFEA_NodeSet.cxx
2 // Created:     Thu Dec 12 17:51:06 2002 
3 // Author:      data exchange team
4 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
5 // Copyright:   Open CASCADE 2002
6
7 #include <StepFEA_NodeSet.ixx>
8
9 //=======================================================================
10 //function : StepFEA_NodeSet
11 //purpose  : 
12 //=======================================================================
13
14 StepFEA_NodeSet::StepFEA_NodeSet ()
15 {
16 }
17
18 //=======================================================================
19 //function : Init
20 //purpose  : 
21 //=======================================================================
22
23 void StepFEA_NodeSet::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
24                             const Handle(StepFEA_HArray1OfNodeRepresentation) &aNodes)
25 {
26   StepGeom_GeometricRepresentationItem::Init(aRepresentationItem_Name);
27
28   theNodes = aNodes;
29 }
30
31 //=======================================================================
32 //function : Nodes
33 //purpose  : 
34 //=======================================================================
35
36 Handle(StepFEA_HArray1OfNodeRepresentation) StepFEA_NodeSet::Nodes () const
37 {
38   return theNodes;
39 }
40
41 //=======================================================================
42 //function : SetNodes
43 //purpose  : 
44 //=======================================================================
45
46 void StepFEA_NodeSet::SetNodes (const Handle(StepFEA_HArray1OfNodeRepresentation) &aNodes)
47 {
48   theNodes = aNodes;
49 }