blob: 7b7e9a1ca85f52fcf9cb927d8946132e8e0c8da3 (
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
34
35
36
37
38
39
40
|
//--------------------------------------------------------------------
//
// File Name : IGESBasic_ExternalRefFileName.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESBasic_ExternalRefFileName.ixx>
IGESBasic_ExternalRefFileName::IGESBasic_ExternalRefFileName () { }
void IGESBasic_ExternalRefFileName::Init
(const Handle(TCollection_HAsciiString)& aFileIdent,
const Handle(TCollection_HAsciiString)& anExtName)
{
theExtRefFileIdentifier = aFileIdent;
theExtRefEntitySymbName = anExtName;
InitTypeAndForm(416,FormNumber());
// FormNumber 0-2 : sens pas clair. Pourrait etre 0:Definition 2:Entity
}
void IGESBasic_ExternalRefFileName::SetForEntity (const Standard_Boolean F)
{
InitTypeAndForm(416, (F ? 2 : 0));
}
Handle(TCollection_HAsciiString) IGESBasic_ExternalRefFileName::FileId () const
{
return theExtRefFileIdentifier;
}
Handle(TCollection_HAsciiString) IGESBasic_ExternalRefFileName::ReferenceName () const
{
return theExtRefEntitySymbName;
}
|