blob: 4136d807c93f2d1ed5e4cfbe46ef850e11263de4 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESBasic_ExternalRefLibName.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESBasic_ExternalRefLibName.ixx>
IGESBasic_ExternalRefLibName::IGESBasic_ExternalRefLibName () { }
void IGESBasic_ExternalRefLibName::Init
(const Handle(TCollection_HAsciiString)& aLibName,
const Handle(TCollection_HAsciiString)& anExtName)
{
theLibName = aLibName;
theExtRefEntitySymbName = anExtName;
InitTypeAndForm(416,4);
}
Handle(TCollection_HAsciiString) IGESBasic_ExternalRefLibName::LibraryName () const
{
return theLibName;
}
Handle(TCollection_HAsciiString) IGESBasic_ExternalRefLibName::ReferenceName () const
{
return theExtRefEntitySymbName;
}
|