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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#ifndef _StdLSchema_PDF_Data_HeaderFile
#include <StdLSchema_PDF_Data.hxx>
#endif
#ifndef _PDF_Data_HeaderFile
#include <PDF_Data.hxx>
#endif
#include <StdLSchema_PDF_Data.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif
IMPLEMENT_STANDARD_HANDLE(StdLSchema_PDF_Data,Storage_CallBack)
IMPLEMENT_STANDARD_RTTIEXT(StdLSchema_PDF_Data,Storage_CallBack)
Handle(Standard_Persistent) StdLSchema_PDF_Data::New() const
{
return new PDF_Data(Storage_stCONSTclCOM());
}
void StdLSchema_PDF_Data::SAdd(const Handle(PDF_Data)& p, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
if (theSchema->AddPersistent(p,"PDF_Data")) {
theSchema->PersistentToAdd(p->_CSFDB_GetPDF_DatamyLabels());
theSchema->PersistentToAdd(p->_CSFDB_GetPDF_DatamyAttributes());
}
}
}
void StdLSchema_PDF_Data::Add(const Handle(Standard_Persistent)& p, const Handle(Storage_Schema)& theSchema) const
{
StdLSchema_PDF_Data::SAdd((Handle(PDF_Data)&)p,theSchema);
}
void StdLSchema_PDF_Data::SWrite(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
Handle(PDF_Data) &pp = (Handle(PDF_Data)&)p;
theSchema->WritePersistentObjectHeader(p,f);
f.BeginWritePersistentObjectData();
f.PutInteger(pp->_CSFDB_GetPDF_DatamyVersion());
theSchema->WritePersistentReference(pp->_CSFDB_GetPDF_DatamyLabels(),f);
theSchema->WritePersistentReference(pp->_CSFDB_GetPDF_DatamyAttributes(),f);
f.EndWritePersistentObjectData();
}
}
void StdLSchema_PDF_Data::Write(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const
{
StdLSchema_PDF_Data::SWrite(p,f,theSchema);
}
void StdLSchema_PDF_Data::SRead(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
Handle(PDF_Data) &pp = (Handle(PDF_Data)&)p;
theSchema->ReadPersistentObjectHeader(f);
f.BeginReadPersistentObjectData();
Standard_Integer PDF_DatamyVersion;
f.GetInteger(PDF_DatamyVersion);
pp->_CSFDB_SetPDF_DatamyVersion(PDF_DatamyVersion);
Handle(PColStd_HArray1OfInteger) PDF_DatamyLabels;
theSchema->ReadPersistentReference(PDF_DatamyLabels,f);
pp->_CSFDB_SetPDF_DatamyLabels(PDF_DatamyLabels);
Handle(PDF_HAttributeArray1) PDF_DatamyAttributes;
theSchema->ReadPersistentReference(PDF_DatamyAttributes,f);
pp->_CSFDB_SetPDF_DatamyAttributes(PDF_DatamyAttributes);
f.EndReadPersistentObjectData();
}
}
void StdLSchema_PDF_Data::Read(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const
{
StdLSchema_PDF_Data::SRead(p,f,theSchema);
}
|