blob: 16f9d98bbd93daf77b49b9922cd672f056c6837b (
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: math_ValueAndWeight.cdl
-- Created: Tue Dec 20 12:44:31 2005
-- Author: Julia GERASIMOVA
-- <jgv@clubox>
---Copyright: Matra Datavision 2005
class ValueAndWeight from math
is
Create
returns ValueAndWeight;
Create(Value : Real from Standard;
Weight : Real from Standard)
returns ValueAndWeight;
Value(me)
returns Real from Standard;
Weight(me)
returns Real from Standard;
fields
myValue : Real from Standard;
myWeight : Real from Standard;
end ValueAndWeight;
|