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