0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / StdPersistent / StdPersistent_TopoDS.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 _StdPersistent_TopoDS_HeaderFile
16 #define _StdPersistent_TopoDS_HeaderFile
17
18 #include <StdObjMgt_SharedObject.hxx>
19 #include <StdObjMgt_ReadData.hxx>
20 #include <StdObjMgt_WriteData.hxx>
21
22 #include <TopoDS_TShape.hxx>
23
24
25 class StdPersistent_TopoDS : protected StdObjMgt_SharedObject
26 {
27 protected:
28   class pTShape : public Standard_Transient
29   {
30     friend class ShapePersistent_TopoDS;
31
32     DEFINE_STANDARD_RTTI_INLINE(pTShape, Standard_Transient)
33
34   public:
35     inline void Read (StdObjMgt_ReadData& theReadData)
36       { theReadData >> myShapes >> myFlags; }
37     inline void Write (StdObjMgt_WriteData& theWriteData) const
38       { theWriteData << myShapes << myFlags; }
39     inline void PChildren(StdObjMgt_Persistent::SequenceOfPersistent& theChildren) const
40       { theChildren.Append(myShapes); }
41     inline Standard_CString PName() const 
42       { return "PTopoDS_TShape"; }
43
44   protected:
45     Handle(StdObjMgt_Persistent) myShapes;
46     Standard_Integer             myFlags;
47   };
48
49 public:
50   typedef IgnoreData<StdObjMgt_Persistent, pTShape, TopoDS_TShape> TShape;
51 };
52
53 #endif