0023022: This is desirable to access OpenGl extensions and core API (1.2+) in one...
[occt.git] / src / StepRepr / StepRepr_MappedItem.cdl
CommitLineData
7fd59977 1-- File: MappedItem.cdl
2-- Created: Fri Dec 1 11:11:22 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7class MappedItem from StepRepr
8
9inherits RepresentationItem from StepRepr
10
11uses
12
13 RepresentationMap from StepRepr,
14 HAsciiString from TCollection
15is
16
17 Create returns mutable MappedItem;
18 ---Purpose: Returns a MappedItem
19
20
21 Init (me : mutable;
22 aName : mutable HAsciiString from TCollection) is redefined;
23
24 Init (me : mutable;
25 aName : mutable HAsciiString from TCollection;
26 aMappingSource : mutable RepresentationMap from StepRepr;
27 aMappingTarget : mutable RepresentationItem from StepRepr) is virtual;
28
29 -- Specific Methods for Field Data Access --
30
31 SetMappingSource(me : mutable; aMappingSource : mutable RepresentationMap);
32 MappingSource (me) returns mutable RepresentationMap;
33 SetMappingTarget(me : mutable; aMappingTarget : mutable RepresentationItem);
34 MappingTarget (me) returns mutable RepresentationItem;
35
36fields
37
38 mappingSource : RepresentationMap from StepRepr;
39 mappingTarget : RepresentationItem from StepRepr;
40
41end MappedItem;