blob: a21c191d3075e691ed4ea14344c2c9d157e305ad (
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
37
38
39
40
41
42
43
44
45
46
47
48
|
-- File: CsgSelect.cdl
-- Created: Fri Dec 1 11:11:10 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class CsgSelect from StepShape
-- inherits SelectType from StepData
-- <CsgSelect> is an EXPRESS Select Type construct translation.
-- it gathers : BooleanResult, CsgPrimitive
uses
BooleanResult,
CsgPrimitive
is
Create returns CsgSelect;
---Purpose : Returns a CsgSelect SelectType
SetTypeOfContent(me : in out; aTypeOfContent : Integer);
TypeOfContent(me) returns Integer;
-- 1 -> BooleanResult
-- 2 -> CsgPrimitive
-- 0 else
BooleanResult (me) returns any BooleanResult;
---Purpose : returns Value as a BooleanResult (Null if another type)
SetBooleanResult (me : in out;aBooleanResult : BooleanResult from StepShape);
CsgPrimitive (me) returns CsgPrimitive;
---Purpose : returns Value as a CsgPrimitive (Null if another type)
SetCsgPrimitive (me : in out; aCsgPrimitive : CsgPrimitive from StepShape);
fields
theBooleanResult : BooleanResult from StepShape;
theCsgPrimitive : CsgPrimitive from StepShape; -- a Select Type
theTypeOfContent : Integer from Standard;
end CsgSelect;
|