blob: da9b22158014143caf30c581db8751df43dc3c04 (
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
|
-- File: RepresentationMap.cdl
-- Created: Fri Dec 1 11:11:27 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class RepresentationMap from StepRepr
inherits TShared from MMgt
uses
RepresentationItem from StepRepr,
Representation from StepRepr
is
Create returns mutable RepresentationMap;
---Purpose: Returns a RepresentationMap
Init (me : mutable;
aMappingOrigin : mutable RepresentationItem from StepRepr;
aMappedRepresentation : mutable Representation from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetMappingOrigin(me : mutable; aMappingOrigin : mutable RepresentationItem);
MappingOrigin (me) returns mutable RepresentationItem;
SetMappedRepresentation(me : mutable; aMappedRepresentation : mutable Representation);
MappedRepresentation (me) returns mutable Representation;
fields
mappingOrigin : RepresentationItem from StepRepr;
mappedRepresentation : Representation from StepRepr;
end RepresentationMap;
|