Integration of OCCT 6.5.0 from SVN
[occt.git] / src / IGESBasic / IGESBasic_ExternalRefName.cdl
CommitLineData
7fd59977 1--
2-- File : ExternalRefName.cdl
3-- Created : Sat 9 Jan 1993
4-- Author : CKY / Contract Toubro-Larsen ( Anand NATRAJAN )
5--
6---Copyright : MATRA-DATAVISION 1993
7--
8
9class ExternalRefName from IGESBasic inherits IGESEntity
10
11 ---Purpose: defines ExternalRefName, Type <416> Form <3>
12 -- in package IGESBasic
13 -- Used when it is assumed that a copy of the subfigure
14 -- exists in native form on the receiving system
15
16uses
17
18 HAsciiString from TCollection
19
20is
21
22 Create returns mutable ExternalRefName;
23
24 -- Specific Methods pertaining to the class
25
26 Init (me : mutable; anExtName : HAsciiString);
27 ---Purpose : This method is used to set the fields of the class
28 -- ExternalRefName
29 -- - anExtName : External Reference Entity Symbolic Name
30
31 ReferenceName (me) returns HAsciiString from TCollection;
32 ---Purpose : returns External Reference Entity Symbolic Name
33
34fields
35
36--
37-- Class : IGESBasic_ExternalRefName
38--
39-- Purpose : Declaration of variables specific to the definition
40-- of the Class ExternalRefName.
41--
42-- Reminder : A ExternalRefName instance is defined by :
43-- - External Reference Entity Symbolic Name
44
45 theExtRefEntitySymbName : HAsciiString from TCollection;
46
47end ExternalRefName;