summaryrefslogtreecommitdiff
path: root/drv/ShapeSchema/ShapeSchema_gp_XY.cxx
blob: 32f7c459c5816fcde100ccde736b64a54a719b3e (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
#ifndef _ShapeSchema_gp_XY_HeaderFile
#include <ShapeSchema_gp_XY.hxx>
#endif
#ifndef _gp_XY_HeaderFile
#include <gp_XY.hxx>
#endif
#include <ShapeSchema_gp_XY.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

void ShapeSchema_gp_XY::SWrite(const gp_XY& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  f.BeginWriteObjectData();
  f.PutReal(pp._CSFDB_Getgp_XYx());
  f.PutReal(pp._CSFDB_Getgp_XYy());

  f.EndWriteObjectData();
}

void ShapeSchema_gp_XY::SRead(gp_XY& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  f.BeginReadObjectData();

    Standard_Real gp_XYx;
    f.GetReal(gp_XYx);
    pp._CSFDB_Setgp_XYx(gp_XYx);

    Standard_Real gp_XYy;
    f.GetReal(gp_XYy);
    pp._CSFDB_Setgp_XYy(gp_XYy);

  f.EndReadObjectData();
}