blob: 8b209708e9614636226ff6b7375c846be2d0be29 (
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
|
-- File: StepData_SelectReal.cdl
-- Created: Mon Dec 16 16:34:16 1996
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1996
class SelectReal from StepData inherits SelectMember
---Purpose : A SelectReal is a SelectMember specialised for a basic real
-- type in a select which also accepts entities : this one has
-- NO NAME
-- For a named select, see SelectNamed
uses CString, Logical
is
Create returns mutable SelectReal;
Kind (me) returns Integer is redefined;
-- fixed kind : Real
Real (me) returns Real is redefined;
SetReal (me : mutable; val : Real) is redefined;
fields
theval : Real;
end SelectReal;
|