blob: 09d932f8c7b18dfb9b696f5be11c4dcf6094481c (
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
|
-- File: StepShape_ContextDependentShapeRepresentation.cdl
-- Created: Wed Jul 1 12:34:49 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class ContextDependentShapeRepresentation from StepShape inherits TShared from MMgt
uses
ShapeRepresentationRelationship from StepRepr,
ProductDefinitionShape from StepRepr
is
Create returns mutable ContextDependentShapeRepresentation;
Init (me : mutable;
aRepRel : ShapeRepresentationRelationship;
aProRel : ProductDefinitionShape);
RepresentationRelation (me) returns ShapeRepresentationRelationship;
SetRepresentationRelation (me : mutable; aRepRel : ShapeRepresentationRelationship);
RepresentedProductRelation (me) returns ProductDefinitionShape;
SetRepresentedProductRelation (me : mutable; aProRel : ProductDefinitionShape);
fields
theRepRel : ShapeRepresentationRelationship;
theProRel : ProductDefinitionShape;
end ContextDependentShapeRepresentation;
|