mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
36 lines
1.0 KiB
Plaintext
Executable File
36 lines
1.0 KiB
Plaintext
Executable File
-- File: BinMDataStd_BooleanArrayDriver.cdl
|
|
-- Created: May 29 11:40:00 2007
|
|
-- Author: Vlad Romashko
|
|
-- <vladislav.romashko@opencascade.com>
|
|
-- Copyright: Open CASCADE
|
|
|
|
class BooleanArrayDriver from BinMDataStd inherits ADriver from BinMDF
|
|
|
|
uses
|
|
|
|
MessageDriver from CDM,
|
|
SRelocationTable from BinObjMgt,
|
|
RRelocationTable from BinObjMgt,
|
|
Persistent from BinObjMgt,
|
|
Attribute from TDF
|
|
|
|
is
|
|
Create (theMessageDriver:MessageDriver from CDM)
|
|
returns mutable BooleanArrayDriver from BinMDataStd;
|
|
|
|
NewEmpty (me)
|
|
returns mutable Attribute from TDF
|
|
is redefined;
|
|
|
|
Paste(me; Source : Persistent from BinObjMgt;
|
|
Target : mutable Attribute from TDF;
|
|
RelocTable : out RRelocationTable from BinObjMgt)
|
|
returns Boolean from Standard is redefined;
|
|
|
|
Paste(me; Source : Attribute from TDF;
|
|
Target : in out Persistent from BinObjMgt;
|
|
RelocTable : out SRelocationTable from BinObjMgt)
|
|
is redefined;
|
|
|
|
end BooleanArrayDriver;
|