blob: 1f035e4e2cea4243c76e0569cc24dddf22031d29 (
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
|
-- File: StepShape_TypeQualifier.cdl
-- Created: Tue Apr 24 14:14:31 2001
-- Author: Christian CAILLET
-- <cky@photox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 2001
class TypeQualifier from StepShape inherits TShared
---Purpose : Added for Dimensional Tolerances
uses
HAsciiString from TCollection
is
Create returns mutable TypeQualifier;
Init (me : mutable; name : HAsciiString from TCollection);
Name (me) returns HAsciiString from TCollection;
SetName (me : mutable; name : HAsciiString from TCollection);
fields
theName : HAsciiString from TCollection;
end TypeQualifier;
|