blob: 9bd11207ff64efd4ffe94dd4c71ca422518f29f0 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
--
-- File : MacroDef.cdl
-- Created : Wed 13 Jan 1993
-- Author : CKY / Contract Toubro-Larsen ( Deepak PRABHU )
--
---Copyright : MATRA-DATAVISION 1993
--
class MacroDef from IGESDefs inherits IGESEntity
---Purpose: defines IGES Macro Definition Entity, Type <306> Form <0>
-- in package IGESDefs
-- This Class specifies the action of a specific MACRO.
-- After specification MACRO can be used as necessary
-- by means of MACRO class instance entity.
uses
HAsciiString from TCollection,
HArray1OfHAsciiString from Interface
raises OutOfRange
is
Create returns mutable MacroDef;
-- Specific methods for the entity
Init (me : mutable;
macro : HAsciiString;
entityTypeID : Integer;
langStatements : HArray1OfHAsciiString;
endMacro : HAsciiString);
---Purpose : This method is used to set the fields of the class
-- MacroDef
-- - macro : MACRO
-- - entityTypeID : Entity Type ID
-- - langStatements : Language Statements
-- - endMacro : END MACRO
NbStatements(me) returns Integer;
---Purpose : returns the number of language statements
MACRO(me) returns HAsciiString from TCollection;
---Purpose : returns the MACRO(Literal)
EntityTypeID(me) returns Integer;
---Purpose : returns the Entity Type ID
LanguageStatement(me ; StatNum : Integer)
returns HAsciiString from TCollection
raises OutOfRange;
-- returns the StatNum'th statement
-- raises exception if StatNum <= 0 or StatNum > NbStatements()
ENDMACRO(me) returns HAsciiString from TCollection;
---Purpose : returns the ENDM(Literal)
fields
--
-- Class : IGESDefs_MacroDef
--
-- Purpose : Declaration of variables specific to MacroDef
--
-- Reminder : An MacroDef Entity specifies the action of a
-- specific MACRO. It consists of only language
-- statements in the parameter data.
theMACRO : HAsciiString;
theEntityTypeID : Integer;
theLangStatements : HArray1OfHAsciiString;
theENDMACRO : HAsciiString;
end MacroDef;
|