blob: e9f5a5e1784ba77b2b9d495d4710aab73a2fc8f6 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef _StdSchema_PDF_FieldOfHAttributeArray1_HeaderFile
#include <StdSchema_PDF_FieldOfHAttributeArray1.hxx>
#endif
#ifndef _PDF_FieldOfHAttributeArray1_HeaderFile
#include <PDF_FieldOfHAttributeArray1.hxx>
#endif
#include <StdSchema_PDF_FieldOfHAttributeArray1.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif
void StdSchema_PDF_FieldOfHAttributeArray1::SAdd(const PDF_FieldOfHAttributeArray1& p, const Handle(Storage_Schema)& theSchema)
{
Standard_Integer i;
for (i = 0; i < p.Length(); i++) {
theSchema->PersistentToAdd(p.Value(i));
}
}
void StdSchema_PDF_FieldOfHAttributeArray1::SWrite(const PDF_FieldOfHAttributeArray1& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
Standard_Integer i;
f.BeginWriteObjectData();
f.PutInteger(pp.Length());
for (i = 0; i < pp.Length(); i++) {
theSchema->WritePersistentReference(pp.Value(i),f);
}
f.EndWriteObjectData();
}
void StdSchema_PDF_FieldOfHAttributeArray1::SRead(PDF_FieldOfHAttributeArray1& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
Standard_Integer size = 0;
f.BeginReadObjectData();
f.GetInteger(size);
pp.Resize(size);
for (Standard_Integer j = 0; j < size; j++) {
Handle(PDF_Attribute) par;
theSchema->ReadPersistentReference(par,f);
pp.SetValue(j,par);
}
f.EndReadObjectData();
}
|