mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 17:40:24 +08:00
36 lines
1.1 KiB
Plaintext
Executable File
36 lines
1.1 KiB
Plaintext
Executable File
-- File: StepShape_QualifiedRepresentationItem.cdl
|
|
-- Created: Tue Apr 24 17:06:06 2001
|
|
-- Author: Christian CAILLET
|
|
-- <cky@photox.paris1.matra-dtv.fr>
|
|
---Copyright: Matra Datavision 2001
|
|
|
|
class QualifiedRepresentationItem from StepShape
|
|
inherits RepresentationItem from StepRepr
|
|
|
|
---Purpose : Added for Dimensional Tolerances
|
|
|
|
uses
|
|
HArray1OfValueQualifier from StepShape,
|
|
ValueQualifier from StepShape,
|
|
HAsciiString from TCollection
|
|
|
|
is
|
|
|
|
Create returns mutable QualifiedRepresentationItem;
|
|
|
|
Init (me : mutable;
|
|
aName : mutable HAsciiString from TCollection;
|
|
qualifiers : HArray1OfValueQualifier from StepShape);
|
|
|
|
Qualifiers (me) returns HArray1OfValueQualifier from StepShape;
|
|
NbQualifiers (me) returns Integer;
|
|
SetQualifiers (me : mutable; qualifiers : HArray1OfValueQualifier from StepShape);
|
|
QualifiersValue (me; num : Integer) returns ValueQualifier from StepShape;
|
|
SetQualifiersValue (me : mutable; num : Integer; aqualifier : ValueQualifier from StepShape);
|
|
|
|
fields
|
|
|
|
theQualifiers : HArray1OfValueQualifier from StepShape;
|
|
|
|
end QualifiedRepresentationItem;
|