mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
27 lines
694 B
C++
Executable File
27 lines
694 B
C++
Executable File
//--------------------------------------------------------------------
|
|
//
|
|
// File Name : IGESBasic_ExternalRefFile.cxx
|
|
// Date :
|
|
// Author : CKY / Contract Toubro-Larsen
|
|
// Copyright : MATRA-DATAVISION 1993
|
|
//
|
|
//--------------------------------------------------------------------
|
|
|
|
#include <IGESBasic_ExternalRefFile.ixx>
|
|
|
|
|
|
IGESBasic_ExternalRefFile::IGESBasic_ExternalRefFile () { }
|
|
|
|
|
|
void IGESBasic_ExternalRefFile::Init
|
|
(const Handle(TCollection_HAsciiString)& aFileIdent)
|
|
{
|
|
theExtRefFileIdentifier = aFileIdent;
|
|
InitTypeAndForm(416,1);
|
|
}
|
|
|
|
Handle(TCollection_HAsciiString) IGESBasic_ExternalRefFile::FileId () const
|
|
{
|
|
return theExtRefFileIdentifier;
|
|
}
|