blob: c701543d47fc9f2a03713de05704a1d6886091ab (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
// File: StepElement_AnalysisItemWithinRepresentation.cxx
// Created: Thu Dec 12 17:28:59 2002
// Author: data exchange team
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
// Copyright: Open CASCADE 2002
#include <StepElement_AnalysisItemWithinRepresentation.ixx>
//=======================================================================
//function : StepElement_AnalysisItemWithinRepresentation
//purpose :
//=======================================================================
StepElement_AnalysisItemWithinRepresentation::StepElement_AnalysisItemWithinRepresentation ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepElement_AnalysisItemWithinRepresentation::Init (const Handle(TCollection_HAsciiString) &aName,
const Handle(TCollection_HAsciiString) &aDescription,
const Handle(StepRepr_RepresentationItem) &aItem,
const Handle(StepRepr_Representation) &aRep)
{
theName = aName;
theDescription = aDescription;
theItem = aItem;
theRep = aRep;
}
//=======================================================================
//function : Name
//purpose :
//=======================================================================
Handle(TCollection_HAsciiString) StepElement_AnalysisItemWithinRepresentation::Name () const
{
return theName;
}
//=======================================================================
//function : SetName
//purpose :
//=======================================================================
void StepElement_AnalysisItemWithinRepresentation::SetName (const Handle(TCollection_HAsciiString) &aName)
{
theName = aName;
}
//=======================================================================
//function : Description
//purpose :
//=======================================================================
Handle(TCollection_HAsciiString) StepElement_AnalysisItemWithinRepresentation::Description () const
{
return theDescription;
}
//=======================================================================
//function : SetDescription
//purpose :
//=======================================================================
void StepElement_AnalysisItemWithinRepresentation::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
{
theDescription = aDescription;
}
//=======================================================================
//function : Item
//purpose :
//=======================================================================
Handle(StepRepr_RepresentationItem) StepElement_AnalysisItemWithinRepresentation::Item () const
{
return theItem;
}
//=======================================================================
//function : SetItem
//purpose :
//=======================================================================
void StepElement_AnalysisItemWithinRepresentation::SetItem (const Handle(StepRepr_RepresentationItem) &aItem)
{
theItem = aItem;
}
//=======================================================================
//function : Rep
//purpose :
//=======================================================================
Handle(StepRepr_Representation) StepElement_AnalysisItemWithinRepresentation::Rep () const
{
return theRep;
}
//=======================================================================
//function : SetRep
//purpose :
//=======================================================================
void StepElement_AnalysisItemWithinRepresentation::SetRep (const Handle(StepRepr_Representation) &aRep)
{
theRep = aRep;
}
|