blob: 307f3d4c2a2f808f23a96694e1aa1b45c13de190 (
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
|
-- File: BinDrivers.cdl
-- Created: Tue Oct 29 11:30:48 2002
-- Author: Michael SAZONOV
-- <msv@novgorox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 2002
package BinDrivers
uses
Standard,
TDF,
TCollection,
TColStd,
CDM,
PCDM,
Storage,
BinObjMgt,
BinMDF,
BinLDrivers
is
class DocumentStorageDriver;
class DocumentRetrievalDriver;
Factory (theGUID : GUID from Standard) returns Transient from Standard;
AttributeDrivers (MsgDrv : MessageDriver from CDM)
returns ADriverTable from BinMDF;
---Purpose: Creates the table of drivers of types supported
StorageVersion returns AsciiString from TCollection;
---Purpose: returns "1"
end BinDrivers;
|