0022651: Impossible to build OCC as static library due to using Standard_EXPORT inste...
[occt.git] / src / StdLPersistent / StdLPersistent_HArray2.cxx
CommitLineData
ff205346 1// Copyright (c) 2015 OPEN CASCADE SAS
2//
3// This file is part of Open CASCADE Technology software library.
4//
5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
10//
11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
13
14#include <StdLPersistent_HArray2.hxx>
ff205346 15
16#include <TColStd_HArray2OfInteger.hxx>
17#include <TColStd_HArray2OfReal.hxx>
18
19
20//=======================================================================
21//function : Read
22//purpose : Read persistent data from a file
23//=======================================================================
45d8465e 24void StdLPersistent_HArray2::base::Read (StdObjMgt_ReadData& theReadData)
ff205346 25{
45d8465e 26 Standard_Integer aLowerRow, aLowerCol, anUpperRow, anUpperCol;
ff205346 27 theReadData >> aLowerRow >> aLowerCol >> anUpperRow >> anUpperCol;
28 createArray (aLowerRow, aLowerCol, anUpperRow, anUpperCol);
29
472433e2 30 StdObjMgt_ReadData::ObjectSentry aSentry (theReadData);
ff205346 31
32 Standard_Integer aSize;
472433e2 33 theReadData >> aSize;
ff205346 34
35 for (Standard_Integer aRow = aLowerRow; aRow <= anUpperRow; aRow++)
36 for (Standard_Integer aCol = aLowerCol; aCol <= anUpperCol; aCol++)
472433e2 37 readValue (theReadData, aRow, aCol);
ff205346 38}
ec964372 39
40//=======================================================================
41//function : Read
42//purpose : Read persistent data from a file
43//=======================================================================
44void StdLPersistent_HArray2::base::Write (StdObjMgt_WriteData& theWriteData) const
45{
46 Standard_Integer aLowerRow, aLowerCol, anUpperRow, anUpperCol;
47 lowerBound(aLowerRow, aLowerCol);
48 upperBound(anUpperRow, anUpperCol);
49 theWriteData << aLowerRow << aLowerCol << anUpperRow << anUpperCol;
50
472433e2 51 StdObjMgt_WriteData::ObjectSentry aSentry (theWriteData);
ec964372 52
53 Standard_Integer aSize = (anUpperRow - aLowerRow + 1) * (anUpperCol - aLowerCol + 1);
472433e2 54 theWriteData << aSize;
ec964372 55
56 for (Standard_Integer aRow = aLowerRow; aRow <= anUpperRow; aRow++)
57 for (Standard_Integer aCol = aLowerCol; aCol <= anUpperCol; aCol++)
472433e2 58 writeValue(theWriteData, aRow, aCol);
ec964372 59}