blob: 40f5d39fad15d11e3c3b377aa832917cfcfaab9f (
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: BinMDataXtd_ConstraintDriver.cdl
-- Created: Fri Aug 24 20:16:51 2001
-- Author: Alexander GRIGORIEV
-- modified 13.04.2009 Sergey Zaritchny
-- Copyright: Open Cascade 2001
class ConstraintDriver from BinMDataXtd inherits ADriver from BinMDF
---Purpose: Attribute Driver.
uses
SRelocationTable from BinObjMgt,
RRelocationTable from BinObjMgt,
Persistent from BinObjMgt,
MessageDriver from CDM,
Attribute from TDF
is
Create (theMessageDriver:MessageDriver from CDM)
returns mutable ConstraintDriver from BinMDataXtd;
NewEmpty (me) returns mutable Attribute from TDF;
Paste(me; Source : Persistent from BinObjMgt;
Target : mutable Attribute from TDF;
RelocTable : out RRelocationTable from BinObjMgt)
returns Boolean from Standard;
Paste(me; Source : Attribute from TDF;
Target : in out Persistent from BinObjMgt;
RelocTable : out SRelocationTable from BinObjMgt);
end ConstraintDriver;
|