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