blob: 1de8030abd4b79da2072f1192ad432dd7b7632a0 (
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
|
-- File: PXCAFDoc_Area.cdl
-- Created: Fri Sep 8 17:56:32 2000
-- Author: data exchange team
-- <det@nordox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 2000
class Area from PXCAFDoc inherits Attribute from PDF
---Purpose:
uses
Real from Standard
is
Create returns mutable Area from PXCAFDoc;
Create (Value : Real from Standard)
returns mutable Area from PXCAFDoc;
Get (me) returns Real from Standard;
Set (me : mutable; V : Real from Standard);
fields
myValue : Real from Standard;
end Area from PXCAFDoc;
|