0022627: Change OCCT memory management defaults
[occt.git] / src / BinMDataXtd / BinMDataXtd_PlacementDriver.cdl
CommitLineData
7fd59977 1-- File: BinMDataXtd_PlacementDriver.cdl
2-- Created: Thu May 13 12:26:32 2004
3-- Author: Sergey ZARITCHNY <szy@opencascade.com>
4-- modified 13.04.2009 Sergey Zaritchny
5-- Copyright: Open CasCade S.A. 2004
6
7class PlacementDriver from BinMDataXtd inherits ADriver from BinMDF
8
9 ---Purpose: Placement attribute Driver.
10
11uses
12 MessageDriver from CDM,
13 SRelocationTable from BinObjMgt,
14 RRelocationTable from BinObjMgt,
15 Persistent from BinObjMgt,
16 Attribute from TDF
17
18is
19 Create (theMessageDriver:MessageDriver from CDM)
20 returns mutable PlacementDriver from BinMDataXtd;
21
22 NewEmpty (me) returns mutable Attribute from TDF
23 is redefined;
24
25 Paste(me; Source : Persistent from BinObjMgt;
26 Target : mutable Attribute from TDF;
27 RelocTable : out RRelocationTable from BinObjMgt)
28 returns Boolean from Standard is redefined;
29
30 Paste(me; Source : Attribute from TDF;
31 Target : in out Persistent from BinObjMgt;
32 RelocTable : out SRelocationTable from BinObjMgt)
33 is redefined;
34
35end PlacementDriver;
36
37