0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[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>
ff205346 19#include <StdObject_Location.hxx>
20#include <StdPersistent_TopoDS.hxx>
7ed7467d 21
ff205346 22#include <TopoDS_Shape.hxx>
7ed7467d 23
24
45d8465e 25class StdObject_Shape
7ed7467d 26{
27public:
ff205346 28 //! Import transient object from the persistent data.
29 Standard_EXPORT TopoDS_Shape Import() const;
7ed7467d 30
45d8465e 31protected:
32 //! Read persistent data from a file.
33 inline void read (StdObjMgt_ReadData& theReadData)
34 { theReadData >> myTShape >> myLocation >> myOrient; }
35
7ed7467d 36private:
45d8465e 37 Handle(StdPersistent_TopoDS::TShape) myTShape;
38 StdObject_Location myLocation;
39 Standard_Integer myOrient;
40
41 friend StdObjMgt_ReadData& operator >>
42 (StdObjMgt_ReadData::Object, StdObject_Shape&);
7ed7467d 43};
44
45d8465e 45//! Read persistent data from a file.
46inline StdObjMgt_ReadData& operator >>
47 (StdObjMgt_ReadData::Object theReadData, StdObject_Shape& theShape)
48{
49 theShape.read (theReadData);
50 return theReadData;
51}
52
7ed7467d 53#endif