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