mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-10 08:08:36 +08:00
36 lines
1.1 KiB
Plaintext
Executable File
36 lines
1.1 KiB
Plaintext
Executable File
-- File: BinMDataStd_IntegerArrayDriver.cdl
|
|
-- Created: Thu Oct 31 19:40:31 2002
|
|
-- Author: Michael SAZONOV
|
|
-- <msv@novgorox.nnov.matra-dtv.fr>
|
|
---Copyright: Matra Datavision 2002
|
|
|
|
class IntegerArrayDriver from BinMDataStd inherits ADriver from BinMDF
|
|
|
|
---Purpose: Array of Integer attribute Driver.
|
|
|
|
uses
|
|
MessageDriver from CDM,
|
|
SRelocationTable from BinObjMgt,
|
|
RRelocationTable from BinObjMgt,
|
|
Persistent from BinObjMgt,
|
|
Attribute from TDF
|
|
|
|
is
|
|
Create (theMessageDriver:MessageDriver from CDM)
|
|
returns mutable IntegerArrayDriver 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 IntegerArrayDriver;
|