blob: 4038cc6cc6483474239b2837df61bcc602cf91af (
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
|
-- File: MNaming_NanimgStorageDriver.cdl
-- Created: Wed Sep 17 17:15:40 1997
-- Author: Isabelle GRIGNON
-- <isg@bigbox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class NamingStorageDriver from MNaming inherits ASDriver from MDF
---Purpose:
uses SRelocationTable from MDF,
Attribute from TDF,
Attribute from PDF,
MessageDriver from CDM
is
Create(theMessageDriver : MessageDriver from CDM)
returns mutable NamingStorageDriver from MNaming;
VersionNumber(me) returns Integer from Standard;
---Purpose: Returns the version number from which the driver
-- is available: 0.
SourceType(me) returns Type from Standard;
---Purpose: Returns the type: Integer from TDataStd.
NewEmpty (me) returns mutable Attribute from PDF;
Paste(me;
Source : Attribute from TDF;
Target : mutable Attribute from PDF;
RelocTable : SRelocationTable from MDF);
end NamingStorageDriver;
|