summaryrefslogtreecommitdiff
path: root/drv/ShapeSchema/ShapeSchema_PColgp_FieldOfHArray1OfXY.cxx
blob: 3f62f8b155d4123ec058df7846ccdbad8687c541 (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
#ifndef _ShapeSchema_PColgp_FieldOfHArray1OfXY_HeaderFile
#include <ShapeSchema_PColgp_FieldOfHArray1OfXY.hxx>
#endif
#ifndef _PColgp_FieldOfHArray1OfXY_HeaderFile
#include <PColgp_FieldOfHArray1OfXY.hxx>
#endif
#include <ShapeSchema_PColgp_FieldOfHArray1OfXY.ixx>
#ifndef _Storage_Schema_HeaderFile
#include <Storage_Schema.hxx>
#endif
#ifndef _Storage_stCONSTclCOM_HeaderFile
#include <Storage_stCONSTclCOM.hxx>
#endif

void ShapeSchema_PColgp_FieldOfHArray1OfXY::SWrite(const PColgp_FieldOfHArray1OfXY& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  Standard_Integer i;

  f.BeginWriteObjectData();
  f.PutInteger(pp.Length());
  for (i = 0; i < pp.Length(); i++) {
    ShapeSchema_gp_XY::SWrite(pp.Value(i),f,theSchema);

  }
  f.EndWriteObjectData();
}

void ShapeSchema_PColgp_FieldOfHArray1OfXY::SRead(PColgp_FieldOfHArray1OfXY& pp, Storage_BaseDriver& f, const Handle(Storage_Schema)& theSchema)
{
  Standard_Integer size = 0;

  f.BeginReadObjectData();
  f.GetInteger(size);
  pp.Resize(size);

  for (Standard_Integer j = 0; j < size; j++) {
    ShapeSchema_gp_XY::SRead((gp_XY&)pp.Value(j),f,theSchema);

  }
  f.EndReadObjectData();
}