blob: 669499a069d52345ecad7ad80147678da8394588 (
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: MPrsStd.cdl
-- Created: Tue Aug 26 17:17:00 1997
-- Author: SMO
-- <SMO@hankox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
package MPrsStd
---Purpose: Storage and Retrieval drivers for graphic
-- attributes. Transient attributes are defined in
-- package TPrsStd and persistent one are defined in
-- package PPrsStd
uses TDF,
PDF,
MDF,
CDM
is
---Purpose: Storage drivers for graphic attributes from
-- TPrsStd
---Category: StorageDriver
class AISPresentationStorageDriver;
class PositionStorageDriver;
---Purpose: Retrieval drivers for graphic attributes from
-- PPrsStd
---Category: RetrievalDriver
class AISPresentationRetrievalDriver;
class AISPresentationRetrievalDriver_1;
class PositionRetrievalDriver;
AddStorageDrivers(aDriverTable : ASDriverHSequence from MDF;theMessageDriver : MessageDriver from CDM);
---Purpose: Adds the attribute storage drivers to <aDriverTable>.
---Category: StorageDriversTable
AddRetrievalDrivers(aDriverTable : ARDriverHSequence from MDF;theMessageDriver : MessageDriver from CDM);
---Purpose: Adds the attribute retrieval drivers to <aDriverTable>.
---Category: RetrievalDriversTable
end MPrsStd;
|