blob: 397813995e0dab4f95b7eee9fc64001990046c72 (
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
|
--
-- File: Graphic3d_DataStructureManager.cdl
-- Created: Vendredi 24 fevrier 1995
-- Author: CAL
-- 11/97 ; CAL : retrait des DataStructure
--
---Copyright: MatraDatavision 1995
--
deferred class DataStructureManager from Graphic3d inherits TShared
---Version:
---Purpose: This class allows the definition of a manager to
-- which the graphic objects are associated.
-- It allows them to be globally manipulated.
-- It defines the global attributes.
---Keywords:
---Warning:
---References:
is
-------------------------
-- Category: Constructors
-------------------------
Initialize;
---Level: Public
---Purpose: Initializes the manager <me>.
---Category: Constructors
------------------------
-- Category: Destructors
------------------------
Destroy (me: mutable)
is virtual;
---Level: Public
---Purpose: Deletes the manager <me>.
---C++: alias ~
---Category: Destructors
end DataStructureManager from Graphic3d;
|