blob: fd549617e8ea68cfe78deebe5f527243c61ba171 (
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
|
-- File: SiUnitAndPlaneAngleUnit.cdl
-- Created: Fri Dec 1 11:11:34 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class SiUnitAndPlaneAngleUnit from StepBasic inherits SiUnit from StepBasic
--- This classe is an implementation of EXPRESS
-- ANDOR Subtype Declaration.
uses
PlaneAngleUnit from StepBasic,
DimensionalExponents from StepBasic,
SiPrefix from StepBasic,
SiUnitName from StepBasic
is
Create returns mutable SiUnitAndPlaneAngleUnit;
---Purpose: Returns a SiUnitAndPlaneAngleUnit
Init (me: mutable; aDimensions : mutable DimensionalExponents from StepBasic)
is redefined;
Init (me: mutable; hasAprefix : Boolean from Standard;
aPrefix : SiPrefix from StepBasic;
aName : SiUnitName from StepBasic) is redefined;
-- Specific Methods for Field Data Access --
SetPlaneAngleUnit(me: mutable; aPlaneAngleUnit: mutable PlaneAngleUnit);
PlaneAngleUnit (me) returns mutable PlaneAngleUnit;
fields
planeAngleUnit : PlaneAngleUnit from StepBasic;
end SiUnitAndPlaneAngleUnit;
|