Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepVisual / StepVisual_PresentedItemRepresentation.cdl
1 -- File:        StepVisual_PresentedItemRepresentation.cdl
2 -- Created:     Wed Mar 26 14:52:06 1997
3 -- Author:      Christian CAILLET
4 --              <cky@heliox.paris1.matra-dtv.fr>
5 ---Copyright:    Matra Datavision 1997
6
7
8 class PresentedItemRepresentation  from StepVisual    inherits TShared
9
10     ---Purpose : Added from StepVisual Rev2 to Rev4
11
12 uses
13      PresentationRepresentationSelect from StepVisual,
14      PresentedItem from StepVisual
15
16 is
17
18     Create returns mutable PresentedItemRepresentation;
19
20     Init (me : mutable;
21           aPresentation : PresentationRepresentationSelect from StepVisual;
22           aItem : PresentedItem from StepVisual);
23
24     SetPresentation (me : mutable; aPresentation : PresentationRepresentationSelect from StepVisual);
25     Presentation (me) returns PresentationRepresentationSelect from StepVisual;
26
27     SetItem (me : mutable; aItem : PresentedItem from StepVisual);
28     Item (me) returns PresentedItem from StepVisual;
29
30 fields
31
32     thePresentation : PresentationRepresentationSelect from StepVisual;
33     theItem : PresentedItem from StepVisual;
34
35 end PresentedItemRepresentation;