blob: 15c169219ad1fb868c12888b90c6960b0bace707 (
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
|
-- File: BinMDataStd_RelationDriver.cdl
-- Created: Wed Sep 12 14:05:15 2001
-- Author: Julia DOROVSKIKH
-- Copyright: Open Cascade 2001
class RelationDriver from BinMDataStd 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 RelationDriver from BinMDataStd;
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 RelationDriver;
|