Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_ElementOrElementGroup.cdl
1 -- File:        StepFEA_ElementOrElementGroup.cdl
2 -- Created:     Tue Feb  4 10:39:08 2003 
3 -- Author:      data exchange team
4 -- Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
5 -- Copyright:   Open CASCADE 2002
6
7 class ElementOrElementGroup from StepFEA
8 inherits SelectType from StepData
9
10     ---Purpose: Representation of STEP SELECT type ElementOrElementGroup
11
12 uses
13     ElementRepresentation from StepFEA,
14     ElementGroup from StepFEA
15
16 is
17     Create returns ElementOrElementGroup from StepFEA;
18         ---Purpose: Empty constructor
19
20     CaseNum (me; ent: Transient) returns Integer;
21         ---Purpose: Recognizes a kind of ElementOrElementGroup select type
22         --          1 -> ElementRepresentation from StepFEA
23         --          2 -> ElementGroup from StepFEA
24         --          0 else
25
26     ElementRepresentation (me) returns ElementRepresentation from StepFEA;
27         ---Purpose: Returns Value as ElementRepresentation (or Null if another type)
28
29     ElementGroup (me) returns ElementGroup from StepFEA;
30         ---Purpose: Returns Value as ElementGroup (or Null if another type)
31
32 end ElementOrElementGroup;