blob: 3281dab153be5658e3cce78b5ee2a46f27e018f5 (
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
|
//--------------------------------------------------------------------
//
// 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;
}
|