summaryrefslogtreecommitdiff
path: root/drv/StdSchema/StdSchema_PNaming_NamedShape.cxx
blob: ca2f6c417d3d64361134005ab9cc6a6d34edac1e (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#ifndef _StdSchema_PNaming_NamedShape_HeaderFile
#include <StdSchema_PNaming_NamedShape.hxx>
#endif
#ifndef _PNaming_NamedShape_HeaderFile
#include <PNaming_NamedShape.hxx>
#endif
#include <StdSchema_PNaming_NamedShape.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

IMPLEMENT_STANDARD_HANDLE(StdSchema_PNaming_NamedShape,Storage_CallBack)
IMPLEMENT_STANDARD_RTTIEXT(StdSchema_PNaming_NamedShape,Storage_CallBack)

Handle(Standard_Persistent) StdSchema_PNaming_NamedShape::New() const
{
  return new PNaming_NamedShape(Storage_stCONSTclCOM());
}

void StdSchema_PNaming_NamedShape::SAdd(const Handle(PNaming_NamedShape)& p, const Handle(Storage_Schema)& theSchema)
{
  if (!p.IsNull()) {
    if (theSchema->AddPersistent(p,"PNaming_NamedShape")) {
         theSchema->PersistentToAdd(p->_CSFDB_GetPNaming_NamedShapemyOldShapes());
   theSchema->PersistentToAdd(p->_CSFDB_GetPNaming_NamedShapemyNewShapes());

    }
  }
}

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

void StdSchema_PNaming_NamedShape::SWrite(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{ 
  if (!p.IsNull()) {
    Handle(PNaming_NamedShape) &pp = (Handle(PNaming_NamedShape)&)p;
    theSchema->WritePersistentObjectHeader(p,f);
    
    f.BeginWritePersistentObjectData();
    theSchema->WritePersistentReference(pp->_CSFDB_GetPNaming_NamedShapemyOldShapes(),f);
    theSchema->WritePersistentReference(pp->_CSFDB_GetPNaming_NamedShapemyNewShapes(),f);
  f.PutInteger(pp->_CSFDB_GetPNaming_NamedShapemyShapeStatus());
  f.PutInteger(pp->_CSFDB_GetPNaming_NamedShapemyVersion());

    f.EndWritePersistentObjectData();
  }
}

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


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

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

    Handle(PTopoDS_HArray1OfShape1) PNaming_NamedShapemyOldShapes;

    theSchema->ReadPersistentReference(PNaming_NamedShapemyOldShapes,f);
    pp->_CSFDB_SetPNaming_NamedShapemyOldShapes(PNaming_NamedShapemyOldShapes);

    Handle(PTopoDS_HArray1OfShape1) PNaming_NamedShapemyNewShapes;

    theSchema->ReadPersistentReference(PNaming_NamedShapemyNewShapes,f);
    pp->_CSFDB_SetPNaming_NamedShapemyNewShapes(PNaming_NamedShapemyNewShapes);

    Standard_Integer PNaming_NamedShapemyShapeStatus;
    f.GetInteger(PNaming_NamedShapemyShapeStatus);
    pp->_CSFDB_SetPNaming_NamedShapemyShapeStatus(PNaming_NamedShapemyShapeStatus);

    Standard_Integer PNaming_NamedShapemyVersion;
    f.GetInteger(PNaming_NamedShapemyVersion);
    pp->_CSFDB_SetPNaming_NamedShapemyVersion(PNaming_NamedShapemyVersion);

    f.EndReadPersistentObjectData();
  }
}

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

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