blob: c4441c64289f43d699603e0fdcf95b0f0d53a9a7 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESAppli_LevelFunction.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESAppli_LevelFunction.ixx>
IGESAppli_LevelFunction::IGESAppli_LevelFunction () { }
void IGESAppli_LevelFunction::Init
(const Standard_Integer nbPropVal,
const Standard_Integer aCode,
const Handle(TCollection_HAsciiString)& aFuncDescrip)
{
theNbPropertyValues = nbPropVal;
theFuncDescripCode = aCode;
theFuncDescrip = aFuncDescrip;
InitTypeAndForm(406,3);
}
Standard_Integer IGESAppli_LevelFunction::NbPropertyValues () const
{
return theNbPropertyValues;
}
Standard_Integer IGESAppli_LevelFunction::FuncDescriptionCode () const
{
return theFuncDescripCode;
}
Handle(TCollection_HAsciiString) IGESAppli_LevelFunction::FuncDescription () const
{
return theFuncDescrip;
}
|