blob: a82b7ce159b1cbf432aebcbb799e41efd8444115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <StepRepr_ShapeAspect.ixx>
StepRepr_ShapeAspect::StepRepr_ShapeAspect () {}
void StepRepr_ShapeAspect::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(TCollection_HAsciiString)& aDescription,
const Handle(StepRepr_ProductDefinitionShape)& aOfShape,
const StepData_Logical aProductDefinitional)
{
// --- classe own fields ---
name = aName;
description = aDescription;
ofShape = aOfShape;
productDefinitional = aProductDefinitional;
}
void StepRepr_ShapeAspect::SetName(const Handle(TCollection_HAsciiString)& aName)
{
name = aName;
}
Handle(TCollection_HAsciiString) StepRepr_ShapeAspect::Name() const
{
return name;
}
void StepRepr_ShapeAspect::SetDescription(const Handle(TCollection_HAsciiString)& aDescription)
{
description = aDescription;
}
Handle(TCollection_HAsciiString) StepRepr_ShapeAspect::Description() const
{
return description;
}
void StepRepr_ShapeAspect::SetOfShape(const Handle(StepRepr_ProductDefinitionShape)& aOfShape)
{
ofShape = aOfShape;
}
Handle(StepRepr_ProductDefinitionShape) StepRepr_ShapeAspect::OfShape() const
{
return ofShape;
}
void StepRepr_ShapeAspect::SetProductDefinitional(const StepData_Logical aProductDefinitional)
{
productDefinitional = aProductDefinitional;
}
StepData_Logical StepRepr_ShapeAspect::ProductDefinitional() const
{
return productDefinitional;
}
|