0022627: Change OCCT memory management defaults
[occt.git] / src / IGESBasic / IGESBasic_Name.cxx
CommitLineData
7fd59977 1//--------------------------------------------------------------------
2//
3// File Name : IGESBasic_Name.cxx
4// Date :
5// Author : CKY / Contract Toubro-Larsen
6// Copyright : MATRA-DATAVISION 1993
7//
8//--------------------------------------------------------------------
9
10#include <IGESBasic_Name.ixx>
11
12
13 IGESBasic_Name::IGESBasic_Name () { }
14
15
16 void IGESBasic_Name::Init
17 (const Standard_Integer nbPropVal,
18 const Handle(TCollection_HAsciiString)& aName)
19{
20 theName = aName;
21 theNbPropertyValues = nbPropVal;
22 InitTypeAndForm(406,15);
23}
24
25
26 Standard_Integer IGESBasic_Name::NbPropertyValues () const
27{
28 return theNbPropertyValues;
29}
30
31 Handle(TCollection_HAsciiString) IGESBasic_Name::Value () const
32{
33 return theName;
34}