summaryrefslogtreecommitdiff
path: root/drv/StdLSchema/StdLSchema_PDataStd_IntegerArray.cxx
blob: 507f0044063291b8710a0a13d95e679cf91ed6dc (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
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
#ifndef _StdLSchema_PDataStd_IntegerArray_HeaderFile
#include <StdLSchema_PDataStd_IntegerArray.hxx>
#endif
#ifndef _PDataStd_IntegerArray_HeaderFile
#include <PDataStd_IntegerArray.hxx>
#endif
#include <StdLSchema_PDataStd_IntegerArray.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

IMPLEMENT_STANDARD_HANDLE(StdLSchema_PDataStd_IntegerArray,Storage_CallBack)
IMPLEMENT_STANDARD_RTTIEXT(StdLSchema_PDataStd_IntegerArray,Storage_CallBack)

Handle(Standard_Persistent) StdLSchema_PDataStd_IntegerArray::New() const
{
  return new PDataStd_IntegerArray(Storage_stCONSTclCOM());
}

void StdLSchema_PDataStd_IntegerArray::SAdd(const Handle(PDataStd_IntegerArray)& p, const Handle(Storage_Schema)& theSchema)
{
  if (!p.IsNull()) {
    if (theSchema->AddPersistent(p,"PDataStd_IntegerArray")) {
         theSchema->PersistentToAdd(p->_CSFDB_GetPDataStd_IntegerArraymyValue());

    }
  }
}

void StdLSchema_PDataStd_IntegerArray::Add(const Handle(Standard_Persistent)& p, const Handle(Storage_Schema)& theSchema) const
{
  StdLSchema_PDataStd_IntegerArray::SAdd((Handle(PDataStd_IntegerArray)&)p,theSchema);
}

void StdLSchema_PDataStd_IntegerArray::SWrite(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{ 
  if (!p.IsNull()) {
    Handle(PDataStd_IntegerArray) &pp = (Handle(PDataStd_IntegerArray)&)p;
    theSchema->WritePersistentObjectHeader(p,f);
    
    f.BeginWritePersistentObjectData();
    theSchema->WritePersistentReference(pp->_CSFDB_GetPDataStd_IntegerArraymyValue(),f);

    f.EndWritePersistentObjectData();
  }
}

void StdLSchema_PDataStd_IntegerArray::Write(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const
{ 
  StdLSchema_PDataStd_IntegerArray::SWrite(p,f,theSchema);
}


void StdLSchema_PDataStd_IntegerArray::SRead(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{ 
  if (!p.IsNull()) {
    Handle(PDataStd_IntegerArray) &pp = (Handle(PDataStd_IntegerArray)&)p;

    theSchema->ReadPersistentObjectHeader(f);
    f.BeginReadPersistentObjectData();

    Handle(PColStd_HArray1OfInteger) PDataStd_IntegerArraymyValue;

    theSchema->ReadPersistentReference(PDataStd_IntegerArraymyValue,f);
    pp->_CSFDB_SetPDataStd_IntegerArraymyValue(PDataStd_IntegerArraymyValue);

    f.EndReadPersistentObjectData();
  }
}

void StdLSchema_PDataStd_IntegerArray::Read(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const

{ 
  StdLSchema_PDataStd_IntegerArray::SRead(p,f,theSchema);
}