1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
-- File: TDataStd_DeltaOnModificationOfByteArray.cdl
-- Created: Wed Dec 5 15:43:43 2007
-- Author: Sergey ZARITCHNY
-- <sergey.zaritchny@opencascade.com>
---Copyright: Open CasCade SA 2007
class DeltaOnModificationOfByteArray from TDataStd inherits DeltaOnModification from TDF
---Purpose: This class provides default services for an
-- AttributeDelta on a MODIFICATION action.
uses
Attribute from TDF,
HArray1OfInteger from TColStd,
HArray1OfByte from TColStd,
ByteArray from TDataStd
is
Create (Arr : ByteArray from TDataStd)
returns mutable DeltaOnModificationOfByteArray from TDataStd;
---Purpose: Initializes a TDF_DeltaOnModification.
Apply (me : mutable)
is redefined virtual;
---Purpose: Applies the delta to the attribute.
fields
myIndxes : HArray1OfInteger from TColStd;
myValues : HArray1OfByte from TColStd;
myUp1 : Integer from Standard;
myUp2 : Integer from Standard;
end DeltaOnModificationOfByteArray;