blob: fc6e51f79d14853ccc5504eddc17336c87eb3161 (
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
|
-- File: PDF.cdl
-- -------
-- Author: DAUTRY Philippe
-- <fid@fox.paris1.matra-dtv.fr>
---Copyright: MATRA DATAVISION 1997
---Version: 0.0
---History: Version Date Purpose
-- 0.0 Mar 13 1997 Creation
package PDF
---Purpose: This pakage is the persistent equivalent of
-- TDF. It describes persistent classes used to store
-- a TDF structure into a Database.
uses
Standard,
PCollection,
PColStd
is
class Data;
deferred class Attribute;
class TagSource;
class Reference;
-- Instantiations ---------------------------------------------------
class HAttributeArray1 from PDF instantiates HArray1 from PCollection
(Attribute from PDF);
end PDF;
|