blob: e4d25f2d63cc7dcc7720739411bf8f7be9beec59 (
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
|
-- File: StepRepr_Transformation.cdl
-- Created: Tue Jun 30 14:18:56 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
-- File: Transformation.cdl
-- Created: Fri Dec 1 11:11:11 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class Transformation from StepRepr inherits SelectType from StepData
-- <Transformation> is an EXPRESS Select Type construct translation.
-- it gathers : ItemDefinedTransformation, FunctionallyDefinedTransformation
uses
ItemDefinedTransformation,
FunctionallyDefinedTransformation
is
Create returns Transformation;
---Purpose : Returns a Transformation SelectType
CaseNum (me; ent : Transient) returns Integer;
---Purpose: Recognizes a Transformation Kind Entity that is :
-- 1 -> ItemDefinedTransformation
-- 2 -> FunctionallyDefinedTransformation
-- 0 else
ItemDefinedTransformation (me) returns any ItemDefinedTransformation;
---Purpose : returns Value as a ItemDefinedTransformation (Null if another type)
FunctionallyDefinedTransformation (me) returns any FunctionallyDefinedTransformation;
---Purpose : returns Value as a FunctionallyDefinedTransformation (Null if another type)
end Transformation;
|