blob: 919579e43b914f405b685c5bad3fa0ead94f8601 (
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
|
#include <StepRepr_Representation.ixx>
StepRepr_Representation::StepRepr_Representation () {}
void StepRepr_Representation::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepRepr_HArray1OfRepresentationItem)& aItems,
const Handle(StepRepr_RepresentationContext)& aContextOfItems)
{
// --- classe own fields ---
name = aName;
items = aItems;
contextOfItems = aContextOfItems;
}
void StepRepr_Representation::SetName(const Handle(TCollection_HAsciiString)& aName)
{
name = aName;
}
Handle(TCollection_HAsciiString) StepRepr_Representation::Name() const
{
return name;
}
void StepRepr_Representation::SetItems(const Handle(StepRepr_HArray1OfRepresentationItem)& aItems)
{
items = aItems;
}
Handle(StepRepr_HArray1OfRepresentationItem) StepRepr_Representation::Items() const
{
return items;
}
Handle(StepRepr_RepresentationItem) StepRepr_Representation::ItemsValue(const Standard_Integer num) const
{
return items->Value(num);
}
Standard_Integer StepRepr_Representation::NbItems () const
{
if (items.IsNull()) return 0;
return items->Length();
}
void StepRepr_Representation::SetContextOfItems(const Handle(StepRepr_RepresentationContext)& aContextOfItems)
{
contextOfItems = aContextOfItems;
}
Handle(StepRepr_RepresentationContext) StepRepr_Representation::ContextOfItems() const
{
return contextOfItems;
}
|