blob: bc29a97a9b03671d4e1841ba030f803f4fd934e3 (
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
|
-- File: DPrsStd.cdl
-- Created: Thu Oct 2 09:30:03 1997
-- Author: Denis PASCAL
-- <dp@dingox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
package DPrsStd
---Purpose: commands for presentation based on AIS
-- ======================================
uses Draw
is
---Purpose: Presentation commands
-- =====================
AllCommands (I : in out Interpretor from Draw);
---Purpose: to load all sketch commands
AISPresentationCommands (I : in out Interpretor from Draw);
---Purpose: to display....etc... ais presentation
AISViewerCommands (I : in out Interpretor from Draw);
---Purpose: to repaint...etc... ais viewer
BasicCommands (I : in out Interpretor from Draw);
---Purpose: set/get position attribute
Factory (theDI : out Interpretor from Draw);
---Purpose: Loads all Draw commands of TKDCAF. Used for plugin.
end DPrsStd;
|