blob: 20e89537626b91e7db2b0fad40bdaab6d446fe7e (
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
33
34
35
36
|
-- File: PDataStd_ByteArray_1.cdl
-- Created: Wed Mar 26 18:01:54 2008
-- Author: Sergey ZARITCHNY
-- <sergey.zaritchny@opencascade.com>
---Copyright: Open CasCade SA 2008
class ByteArray_1 from PDataStd inherits Attribute from PDF
---Purpose: Persistence
uses
HArray1OfInteger from PColStd
is
Create
returns mutable ByteArray_1 from PDataStd;
Set (me : mutable;
values : HArray1OfInteger from PColStd);
Get (me)
---C++: return const &
returns HArray1OfInteger from PColStd;
SetDelta(me : mutable; delta : Boolean from Standard);
GetDelta(me) returns Boolean from Standard;
fields
myValues : HArray1OfInteger from PColStd;
myDelta : Boolean from Standard;
end ByteArray_1;
|