blob: 630b93e8ab134e3aaf9e63e1c22b83f1a997f220 (
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: PDataStd_Real.cdl
-- Created: Wed Apr 9 11:41:53 1997
-- Author: VAUTHIER Jean-Claude
---Copyright: Matra Datavision 1997
class Real from PDataStd inherits Attribute from PDF
---Purpose:
uses Real from Standard
is
Create returns mutable Real from PDataStd;
Create (Value : Real from Standard;
Dimension : Integer from Standard)
returns mutable Real from PDataStd;
Get (me) returns Real from Standard;
Set (me : mutable; V : Real from Standard);
SetDimension (me : mutable; DIM : Integer from Standard);
GetDimension (me)
returns Integer from Standard;
fields
myValue : Real from Standard;
myDimension : Integer from Standard;
end Real;
|