0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[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:
d533dafb 31 //! Empty constructor.
32 StdObject_Shape() : myOrient(0) {}
33
ff205346 34 //! Import transient object from the persistent data.
35 Standard_EXPORT TopoDS_Shape Import() const;
7ed7467d 36
ec964372 37 Standard_EXPORT void PChildren(StdObjMgt_Persistent::SequenceOfPersistent& theChildren) const;
38
45d8465e 39protected:
40 //! Read persistent data from a file.
41 inline void read (StdObjMgt_ReadData& theReadData)
42 { theReadData >> myTShape >> myLocation >> myOrient; }
43
ec964372 44 //! Write persistent data to a file.
45 inline void write (StdObjMgt_WriteData& theWriteData) const
46 { theWriteData << myTShape << myLocation << myOrient; }
47
48protected:
45d8465e 49 Handle(StdPersistent_TopoDS::TShape) myTShape;
50 StdObject_Location myLocation;
51 Standard_Integer myOrient;
52
53 friend StdObjMgt_ReadData& operator >>
472433e2 54 (StdObjMgt_ReadData&, StdObject_Shape&);
ec964372 55 friend StdObjMgt_WriteData& operator <<
472433e2 56 (StdObjMgt_WriteData&, const StdObject_Shape&);
7ed7467d 57};
58
45d8465e 59//! Read persistent data from a file.
60inline StdObjMgt_ReadData& operator >>
472433e2 61 (StdObjMgt_ReadData& theReadData, StdObject_Shape& theShape)
45d8465e 62{
472433e2 63 StdObjMgt_ReadData::ObjectSentry aSentry (theReadData);
45d8465e 64 theShape.read (theReadData);
65 return theReadData;
66}
67
ec964372 68//! Write persistent data to a file.
69inline StdObjMgt_WriteData& operator <<
472433e2 70 (StdObjMgt_WriteData& theWriteData, const StdObject_Shape& theShape)
ec964372 71{
472433e2 72 StdObjMgt_WriteData::ObjectSentry aSentry (theWriteData);
ec964372 73 theShape.write (theWriteData);
74 return theWriteData;
75}
76
7ed7467d 77#endif