blob: 0933e3aa9950b00561f082d740b9ca84e0e4fcb2 (
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
77
78
79
80
81
82
83
84
85
|
-- File: TDataStd_Directory.cdl
-- Created: Fri Jun 25 13:59:31 1999
-- Author: Sergey RUIN
-- <s-ruin@nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class Directory from TDataStd inherits Attribute from TDF
---Purpose: Associates a directory in the data framework with
-- a TDataStd_TagSource attribute.
-- You can create a new directory label and add
-- sub-directory or object labels to it,
uses Attribute from TDF,
Label from TDF,
GUID from Standard,
DataSet from TDF,
RelocationTable from TDF
is
---Purpose: class methods
-- =============
Find (myclass; current : Label from TDF; D : in out Directory from TDataStd)
---Purpose: Searches for a directory attribute on the label
-- current, or on one of the father labels of current.
-- If a directory attribute is found, true is returned,
-- and the attribute found is set as D.
returns Boolean from Standard;
New (myclass; label : Label from TDF)
---Purpose: Creates an enpty Directory attribute, located at
-- <label>. Raises if <label> has attribute
returns Directory from TDataStd;
AddDirectory (myclass; dir : Directory from TDataStd)
---Purpose: Creates a new sub-label and sets the
-- sub-directory dir on that label.
returns Directory from TDataStd;
MakeObjectLabel (myclass; dir : Directory from TDataStd)
---Purpose: Makes new label and returns it to insert
-- other object attributes (sketch,part...etc...)
returns Label from TDF;
GetID (myclass)
---C++: return const &
returns GUID from Standard;
---Purpose: Directory methods
-- ===============
Create
returns mutable Directory from TDataStd;
---Category: methodes de TDF_Attribute
-- =========================
ID (me)
---C++: return const &
returns GUID from Standard;
Restore (me: mutable; with : Attribute from TDF);
NewEmpty (me)
returns mutable Attribute from TDF;
Paste (me; into : mutable Attribute from TDF;
RT : mutable RelocationTable from TDF);
References (me; DS : DataSet from TDF) is redefined;
Dump(me; anOS : in out OStream from Standard)
returns OStream from Standard
is redefined;
---C++: return &
end Directory;
|