0029355: OCCT 6.9.1 persistence restored in OCCT 7.2.0 not working
[occt.git] / src / StdObject / StdObject_Shape.hxx
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
15 #ifndef _StdObject_Shape_HeaderFile
16 #define _StdObject_Shape_HeaderFile
17
18 #include <StdObjMgt_ReadData.hxx>
19 #include <StdObjMgt_WriteData.hxx>
20 #include <StdObject_Location.hxx>
21 #include <StdPersistent_TopoDS.hxx>
22
23 #include <TopoDS_Shape.hxx>
24
25
26 class StdObject_Shape
27 {
28   friend class ShapePersistent_TopoDS;
29
30 public:
31   //! Import transient object from the persistent data.
32   Standard_EXPORT TopoDS_Shape Import() const;
33
34   Standard_EXPORT void PChildren(StdObjMgt_Persistent::SequenceOfPersistent& theChildren) const;
35
36 protected:
37   //! Read persistent data from a file.
38   inline void read (StdObjMgt_ReadData& theReadData)
39     { theReadData >> myTShape >> myLocation >> myOrient; }
40
41   //! Write persistent data to a file.
42   inline void write (StdObjMgt_WriteData& theWriteData) const
43     { theWriteData << myTShape << myLocation << myOrient; }
44
45 protected:
46   Handle(StdPersistent_TopoDS::TShape) myTShape;
47   StdObject_Location                   myLocation;
48   Standard_Integer                     myOrient;
49
50   friend StdObjMgt_ReadData& operator >>
51     (StdObjMgt_ReadData&, StdObject_Shape&);
52   friend StdObjMgt_WriteData& operator <<
53     (StdObjMgt_WriteData&, const StdObject_Shape&);
54 };
55
56 //! Read persistent data from a file.
57 inline StdObjMgt_ReadData& operator >>
58   (StdObjMgt_ReadData& theReadData, StdObject_Shape& theShape)
59 {
60   StdObjMgt_ReadData::ObjectSentry aSentry (theReadData);
61   theShape.read (theReadData);
62   return theReadData;
63 }
64
65 //! Write persistent data to a file.
66 inline StdObjMgt_WriteData& operator <<
67   (StdObjMgt_WriteData& theWriteData, const StdObject_Shape& theShape)
68 {
69   StdObjMgt_WriteData::ObjectSentry aSentry (theWriteData);
70   theShape.write (theWriteData);
71   return theWriteData;
72 }
73
74 #endif