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
|
#ifndef _ShapeSchema_PColgp_HArray1OfLin2d_HeaderFile
#include <ShapeSchema_PColgp_HArray1OfLin2d.hxx>
#endif
#ifndef _PColgp_HArray1OfLin2d_HeaderFile
#include <PColgp_HArray1OfLin2d.hxx>
#endif
#include <ShapeSchema_PColgp_HArray1OfLin2d.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif
IMPLEMENT_STANDARD_HANDLE(ShapeSchema_PColgp_HArray1OfLin2d,Storage_CallBack)
IMPLEMENT_STANDARD_RTTIEXT(ShapeSchema_PColgp_HArray1OfLin2d,Storage_CallBack)
Handle(Standard_Persistent) ShapeSchema_PColgp_HArray1OfLin2d::New() const
{
return new PColgp_HArray1OfLin2d(Storage_stCONSTclCOM());
}
void ShapeSchema_PColgp_HArray1OfLin2d::SAdd(const Handle(PColgp_HArray1OfLin2d)& p, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
if (theSchema->AddPersistent(p,"PColgp_HArray1OfLin2d")) {
}
}
}
void ShapeSchema_PColgp_HArray1OfLin2d::Add(const Handle(Standard_Persistent)& p, const Handle(Storage_Schema)& theSchema) const
{
ShapeSchema_PColgp_HArray1OfLin2d::SAdd((Handle(PColgp_HArray1OfLin2d)&)p,theSchema);
}
void ShapeSchema_PColgp_HArray1OfLin2d::SWrite(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
Handle(PColgp_HArray1OfLin2d) &pp = (Handle(PColgp_HArray1OfLin2d)&)p;
theSchema->WritePersistentObjectHeader(p,f);
(void)pp; // dummy to avoid compiler warning on unused arg
f.BeginWritePersistentObjectData();
f.PutInteger(pp->_CSFDB_GetPColgp_HArray1OfLin2dLowerBound());
f.PutInteger(pp->_CSFDB_GetPColgp_HArray1OfLin2dUpperBound());
ShapeSchema_PColgp_FieldOfHArray1OfLin2d::SWrite(pp->_CSFDB_GetPColgp_HArray1OfLin2dData(),f,theSchema);
f.EndWritePersistentObjectData();
}
}
void ShapeSchema_PColgp_HArray1OfLin2d::Write(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const
{
ShapeSchema_PColgp_HArray1OfLin2d::SWrite(p,f,theSchema);
}
void ShapeSchema_PColgp_HArray1OfLin2d::SRead(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
if (!p.IsNull()) {
Handle(PColgp_HArray1OfLin2d) &pp = (Handle(PColgp_HArray1OfLin2d)&)p;
(void)pp; // dummy to avoid compiler warning on unused arg
theSchema->ReadPersistentObjectHeader(f);
f.BeginReadPersistentObjectData();
Standard_Integer PColgp_HArray1OfLin2dLowerBound;
f.GetInteger(PColgp_HArray1OfLin2dLowerBound);
pp->_CSFDB_SetPColgp_HArray1OfLin2dLowerBound(PColgp_HArray1OfLin2dLowerBound);
Standard_Integer PColgp_HArray1OfLin2dUpperBound;
f.GetInteger(PColgp_HArray1OfLin2dUpperBound);
pp->_CSFDB_SetPColgp_HArray1OfLin2dUpperBound(PColgp_HArray1OfLin2dUpperBound);
ShapeSchema_PColgp_FieldOfHArray1OfLin2d::SRead((PColgp_FieldOfHArray1OfLin2d&)pp->_CSFDB_GetPColgp_HArray1OfLin2dData(),f,theSchema);
f.EndReadPersistentObjectData();
}
}
void ShapeSchema_PColgp_HArray1OfLin2d::Read(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema) const
{
ShapeSchema_PColgp_HArray1OfLin2d::SRead(p,f,theSchema);
}
|