blob: baa988130689f51e538131d7ed80d67d2d161ee8 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESBasic_Name.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESBasic_Name.ixx>
IGESBasic_Name::IGESBasic_Name () { }
void IGESBasic_Name::Init
(const Standard_Integer nbPropVal,
const Handle(TCollection_HAsciiString)& aName)
{
theName = aName;
theNbPropertyValues = nbPropVal;
InitTypeAndForm(406,15);
}
Standard_Integer IGESBasic_Name::NbPropertyValues () const
{
return theNbPropertyValues;
}
Handle(TCollection_HAsciiString) IGESBasic_Name::Value () const
{
return theName;
}
|