blob: 1206d3c0a4e5781d428ea14cdec7612c836d24b7 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESAppli_ReferenceDesignator.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESAppli_ReferenceDesignator.ixx>
#include <IGESData_LevelListEntity.hxx>
IGESAppli_ReferenceDesignator::IGESAppli_ReferenceDesignator () { }
void IGESAppli_ReferenceDesignator::Init
(const Standard_Integer nbPropVal,
const Handle(TCollection_HAsciiString)& aText)
{
theRefDesigText = aText;
theNbPropertyValues = nbPropVal;
InitTypeAndForm(406,7);
}
Standard_Integer IGESAppli_ReferenceDesignator::NbPropertyValues () const
{
return theNbPropertyValues;
}
Handle(TCollection_HAsciiString)
IGESAppli_ReferenceDesignator::RefDesignatorText () const
{
return theRefDesigText;
}
|