blob: c14bf11a99085457c15c6da6d144d77b7e80feb5 (
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
|
#ifndef _StdLSchema_DBC_VArrayOfExtCharacter_HeaderFile
#include <StdLSchema_DBC_VArrayOfExtCharacter.hxx>
#endif
#ifndef _DBC_VArrayOfExtCharacter_HeaderFile
#include <DBC_VArrayOfExtCharacter.hxx>
#endif
#include <StdLSchema_DBC_VArrayOfExtCharacter.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif
void StdLSchema_DBC_VArrayOfExtCharacter::SWrite(const DBC_VArrayOfExtCharacter& 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++) {
f.PutExtCharacter(pp.Value(i));
}
f.EndWriteObjectData();
}
void StdLSchema_DBC_VArrayOfExtCharacter::SRead(DBC_VArrayOfExtCharacter& 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++) {
Standard_ExtCharacter par;
f.GetExtCharacter(par);
pp.SetValue(j,par);
}
f.EndReadObjectData();
}
|