summaryrefslogtreecommitdiff
path: root/drv/XCAFSchema/XCAFSchema_PTopLoc_Datum3D.cxx
blob: 7ffe050e9d1dbe72cd5a9ee9af1af64847e3658e (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
#ifndef _XCAFSchema_PTopLoc_Datum3D_HeaderFile
#include <XCAFSchema_PTopLoc_Datum3D.hxx>
#endif
#ifndef _PTopLoc_Datum3D_HeaderFile
#include <PTopLoc_Datum3D.hxx>
#endif
#include <XCAFSchema_PTopLoc_Datum3D.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

IMPLEMENT_STANDARD_HANDLE(XCAFSchema_PTopLoc_Datum3D,Storage_CallBack)
IMPLEMENT_STANDARD_RTTIEXT(XCAFSchema_PTopLoc_Datum3D,Storage_CallBack)

Handle(Standard_Persistent) XCAFSchema_PTopLoc_Datum3D::New() const
{
  return new PTopLoc_Datum3D(Storage_stCONSTclCOM());
}

void XCAFSchema_PTopLoc_Datum3D::SAdd(const Handle(PTopLoc_Datum3D)& p, const Handle(Storage_Schema)& theSchema)
{
  if (!p.IsNull()) {
    if (theSchema->AddPersistent(p,"PTopLoc_Datum3D")) {
      
    }
  }
}

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

void XCAFSchema_PTopLoc_Datum3D::SWrite(const Handle(Standard_Persistent)& p, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{ 
  if (!p.IsNull()) {
    Handle(PTopLoc_Datum3D) &pp = (Handle(PTopLoc_Datum3D)&)p;
    theSchema->WritePersistentObjectHeader(p,f);
    
    f.BeginWritePersistentObjectData();
    XCAFSchema_gp_Trsf::SWrite(pp->_CSFDB_GetPTopLoc_Datum3DmyTrsf(),f,theSchema);

    f.EndWritePersistentObjectData();
  }
}

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


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

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

    XCAFSchema_gp_Trsf::SRead((gp_Trsf&)pp->_CSFDB_GetPTopLoc_Datum3DmyTrsf(),f,theSchema);

    f.EndReadPersistentObjectData();
  }
}

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

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