blob: 9a38be64882445db2c64ec554abc71345c369f06 (
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
|
-- File: PXCAFDoc_GraphNode.cdl
-- Created: Fri Sep 29 09:13:30 2000
-- Author: Pavel TELKOV
-- <ptv@nordox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 2000
class GraphNode from PXCAFDoc inherits Attribute from PDF
---Purpose:
uses
Attribute from PDF,
GUID from Standard,
GraphNodeSequence from PXCAFDoc
is
Create returns mutable GraphNode from PXCAFDoc;
SetFather (me : mutable;F : GraphNode from PXCAFDoc)
returns Integer from Standard;
SetChild (me : mutable;Ch : GraphNode from PXCAFDoc)
returns Integer from Standard;
GetFather (me ; Findex : Integer from Standard)
returns GraphNode from PXCAFDoc;
GetChild (me ; Chindex : Integer from Standard)
returns GraphNode from PXCAFDoc;
FatherIndex (me ; F : GraphNode from PXCAFDoc)
returns Integer from Standard;
ChildIndex (me ; Ch : GraphNode from PXCAFDoc)
returns Integer from Standard;
NbFathers (me) returns Integer from Standard;
NbChildren (me) returns Integer from Standard;
SetGraphID(me : mutable; GUID : GUID from Standard);
GetGraphID(me) returns GUID from Standard;
fields
myFathers : GraphNodeSequence from PXCAFDoc;
myChildren : GraphNodeSequence from PXCAFDoc;
myGraphID : GUID from Standard;
end GraphNode;
|