blob: 4504938610904c5f1ed751a5de8184ba429af25c (
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
|
-- File: DDF_Data.cdl
-- ------------
-- Author: DAUTRY Philippe
---Copyright: MATRA DATAVISION 1997
---Version: 0.0
---History: Version Date Purpose
-- 0.0 Feb 10 1997 Creation
class Data from DDF inherits Drawable3D from Draw
---Purpose : Encapsulates a data framework in a drawable object
uses
Data from TDF,
Interpretor from Draw,
Display from Draw
is
Create (aDF : Data from TDF)
returns mutable Data from DDF;
DrawOn (me; dis : in out Display);
Copy (me)
returns mutable Drawable3D from Draw
is redefined;
Dump (me; S : in out OStream)
is redefined;
DataFramework (me : mutable; aDF : Data from TDF);
DataFramework (me)
returns Data from TDF;
Whatis (me; I : in out Interpretor from Draw)
is redefined;
fields
myDF : Data from TDF;
end Data;
|