Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepFEA / StepFEA_FreedomAndCoefficient.cdl
diff --git a/src/StepFEA/StepFEA_FreedomAndCoefficient.cdl b/src/StepFEA/StepFEA_FreedomAndCoefficient.cdl
new file mode 100755 (executable)
index 0000000..f9726b4
--- /dev/null
@@ -0,0 +1,38 @@
+-- File:       StepFEA_FreedomAndCoefficient.cdl
+-- Created:    Sat Dec 14 11:02:05 2002 
+-- Author:     data exchange team
+-- Generator:  ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
+-- Copyright:  Open CASCADE 2002
+
+class FreedomAndCoefficient from StepFEA
+inherits TShared from MMgt
+
+    ---Purpose: Representation of STEP entity FreedomAndCoefficient
+
+uses
+    DegreeOfFreedom from StepFEA,
+    MeasureOrUnspecifiedValue from StepElement
+
+is
+    Create returns FreedomAndCoefficient from StepFEA;
+       ---Purpose: Empty constructor
+
+    Init (me: mutable; aFreedom: DegreeOfFreedom from StepFEA;
+                       aA: MeasureOrUnspecifiedValue from StepElement);
+       ---Purpose: Initialize all fields (own and inherited)
+
+    Freedom (me) returns DegreeOfFreedom from StepFEA;
+       ---Purpose: Returns field Freedom
+    SetFreedom (me: mutable; Freedom: DegreeOfFreedom from StepFEA);
+       ---Purpose: Set field Freedom
+
+    A (me) returns MeasureOrUnspecifiedValue from StepElement;
+       ---Purpose: Returns field A
+    SetA (me: mutable; A: MeasureOrUnspecifiedValue from StepElement);
+       ---Purpose: Set field A
+
+fields
+    theFreedom: DegreeOfFreedom from StepFEA;
+    theA: MeasureOrUnspecifiedValue from StepElement;
+
+end FreedomAndCoefficient;