Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepRepr / StepRepr_ItemDefinedTransformation.cxx
CommitLineData
7fd59977 1#include <StepRepr_ItemDefinedTransformation.ixx>
2
3StepRepr_ItemDefinedTransformation::StepRepr_ItemDefinedTransformation () { }
4
5void StepRepr_ItemDefinedTransformation::Init
6(const Handle(TCollection_HAsciiString)& aName,
7 const Handle(TCollection_HAsciiString)& aDescription,
8 const Handle(StepRepr_RepresentationItem)& aTransformItem1,
9 const Handle(StepRepr_RepresentationItem)& aTransformItem2)
10{ theName = aName; theDescription = aDescription;
11 theTransformItem1 = aTransformItem1; theTransformItem2 = aTransformItem2; }
12
13void StepRepr_ItemDefinedTransformation::SetName (const Handle(TCollection_HAsciiString)& aName)
14{ theName = aName; }
15
16Handle(TCollection_HAsciiString) StepRepr_ItemDefinedTransformation::Name () const
17{ return theName; }
18
19void StepRepr_ItemDefinedTransformation::SetDescription (const Handle(TCollection_HAsciiString)& aDescription)
20{ theDescription = aDescription; }
21
22Handle(TCollection_HAsciiString) StepRepr_ItemDefinedTransformation::Description () const
23{ return theDescription; }
24
25void StepRepr_ItemDefinedTransformation::SetTransformItem1 (const Handle(StepRepr_RepresentationItem)& aTransformItem1)
26{ theTransformItem1 = aTransformItem1; }
27
28Handle(StepRepr_RepresentationItem) StepRepr_ItemDefinedTransformation::TransformItem1 () const
29{ return theTransformItem1; }
30
31void StepRepr_ItemDefinedTransformation::SetTransformItem2 (const Handle(StepRepr_RepresentationItem)& aTransformItem2)
32{ theTransformItem2 = aTransformItem2; }
33
34Handle(StepRepr_RepresentationItem) StepRepr_ItemDefinedTransformation::TransformItem2 () const
35{ return theTransformItem2; }