blob: 6092bf9ec2cf81a4387ae7604786d75fa6516b64 (
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: Interface_IntVal.cdl
-- Created: Wed Sep 3 15:25:38 1997
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class IntVal from Interface inherits TShared from MMgt
---Purpose : An Integer through a Handle (i.e. managed as TShared)
uses Integer
is
Create returns mutable IntVal;
Value (me) returns Integer;
CValue (me : mutable) returns Integer;
---C++ : return &
fields
theval : Integer;
end IntVal;
|