mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-25 00:57:38 +08:00
35 lines
770 B
C++
Executable File
35 lines
770 B
C++
Executable File
//--------------------------------------------------------------------
|
|
//
|
|
// 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;
|
|
}
|