1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

Backup() is not efficient in TDataStd array attributes.

Documentation improvement for set of attributes using 'Delta'.
This commit is contained in:
szy 2015-04-13 16:07:19 +03:00 committed by bugmaster
parent 85a975f112
commit 4057f898f7
4 changed files with 18 additions and 13 deletions

View File

@ -39,10 +39,11 @@ is
label : Label from TDF;
lower, upper : Integer from Standard;
isDelta : Boolean from Standard = Standard_False)
---Purpose: Finds or creates an attribute with the array.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If attribute is already set, all input parameters are refused
-- and the found attribute is returned.
---Purpose: Finds or creates an attribute with the array on the specified label.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If <isDelta> == True, DeltaOnModification of the current attribute is used.
-- If attribute is already set, all input parameters are refused and the found
-- attribute is returned.
returns ByteArray from TDataStd;

View File

@ -40,10 +40,11 @@ is
Set (myclass; label : Label from TDF; lower, upper : Integer from Standard;
isDelta : Boolean from Standard = Standard_False)
---Purpose: Finds, or creates, an ExtStringArray attribute with <lower>
-- and <upper> bounds. The ExtStringArray attribute is returned.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If attribute is already set, all input parameters are refused
-- and the found attribute is returned.
-- and <upper> bounds on the specified label.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If <isDelta> == True, DeltaOnModification of the current attribute is used.
-- If attribute is already set, all input parameters are refused and the found
-- attribute is returned.
returns ExtStringArray from TDataStd;

View File

@ -40,7 +40,8 @@ is
isDelta : Boolean from Standard = Standard_False)
---Purpose: Finds or creates on the <label> an integer array attribute
-- with the specified <lower> and <upper> boundaries.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If <isDelta> == True, DeltaOnModification of the current attribute is used.
-- If attribute is already set, all input parameters are refused and the found
-- attribute is returned.
returns IntegerArray from TDataStd;

View File

@ -38,10 +38,12 @@ is
Set (myclass; label : Label from TDF; lower, upper : Integer from Standard;
isDelta : Boolean from Standard = Standard_False)
---Purpose: Finds or creates on the <label> a real array attribute
-- with the specified <lower> and <upper> boundaries.
-- If attribute is already set, all input parameters are refused and the found
-- attribute is returned.
---Purpose: Finds or creates on the <label> a real array attribute with
-- the specified <lower> and <upper> boundaries.
-- If <isDelta> == False, DefaultDeltaOnModification is used.
-- If <isDelta> == True, DeltaOnModification of the current attribute is used.
-- If attribute is already set, input parameter <isDelta> is refused and the found
-- attribute returned.
returns RealArray from TDataStd;