Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_FeaGroup.cdl
1 -- File:        StepFEA_FeaGroup.cdl
2 -- Created:     Thu Dec 12 17:51:05 2002 
3 -- Author:      data exchange team
4 -- Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
5 -- Copyright:   Open CASCADE 2002
6
7 class FeaGroup from StepFEA
8 inherits Group from StepBasic
9
10     ---Purpose: Representation of STEP entity FeaGroup
11
12 uses
13     HAsciiString from TCollection,
14     FeaModel from StepFEA
15
16 is
17     Create returns FeaGroup from StepFEA;
18         ---Purpose: Empty constructor
19
20     Init (me: mutable; aGroup_Name: HAsciiString from TCollection;
21                        aGroup_Description: HAsciiString from TCollection;
22                        aModelRef: FeaModel from StepFEA);
23         ---Purpose: Initialize all fields (own and inherited)
24
25     ModelRef (me) returns FeaModel from StepFEA;
26         ---Purpose: Returns field ModelRef
27     SetModelRef (me: mutable; ModelRef: FeaModel from StepFEA);
28         ---Purpose: Set field ModelRef
29
30 fields
31     theModelRef: FeaModel from StepFEA;
32
33 end FeaGroup;