blob: 60cb8de9a2bf98c1d2f6305932b70425330f09f9 (
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: MoniTool_RealVal.cdl
-- Created: Wed Sep 3 15:25:38 1997
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class RealVal from MoniTool inherits TShared from MMgt
---Purpose : A Real through a Handle (i.e. managed as TShared)
uses Real
is
Create (val : Real = 0.0) returns mutable RealVal;
Value (me) returns Real;
CValue (me : mutable) returns Real;
---C++ : return &
fields
theval : Real;
end RealVal;
|