blob: ce6cbe37e726bc630bcf323ce287e3fedc40405c (
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
|
// File: StepBasic_ContractType.cxx
// Created: Fri Nov 26 16:26:37 1999
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright: Matra Datavision 1999
#include <StepBasic_ContractType.ixx>
//=======================================================================
//function : StepBasic_ContractType
//purpose :
//=======================================================================
StepBasic_ContractType::StepBasic_ContractType ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepBasic_ContractType::Init (const Handle(TCollection_HAsciiString) &aDescription)
{
theDescription = aDescription;
}
//=======================================================================
//function : Description
//purpose :
//=======================================================================
Handle(TCollection_HAsciiString) StepBasic_ContractType::Description () const
{
return theDescription;
}
//=======================================================================
//function : SetDescription
//purpose :
//=======================================================================
void StepBasic_ContractType::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
{
theDescription = aDescription;
}
|