blob: 58f240f77b01f11f710cd785e0abef91a569f04b (
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
|
#include <StepBasic_Approval.ixx>
StepBasic_Approval::StepBasic_Approval () {}
void StepBasic_Approval::Init(
const Handle(StepBasic_ApprovalStatus)& aStatus,
const Handle(TCollection_HAsciiString)& aLevel)
{
// --- classe own fields ---
status = aStatus;
level = aLevel;
}
void StepBasic_Approval::SetStatus(const Handle(StepBasic_ApprovalStatus)& aStatus)
{
status = aStatus;
}
Handle(StepBasic_ApprovalStatus) StepBasic_Approval::Status() const
{
return status;
}
void StepBasic_Approval::SetLevel(const Handle(TCollection_HAsciiString)& aLevel)
{
level = aLevel;
}
Handle(TCollection_HAsciiString) StepBasic_Approval::Level() const
{
return level;
}
|