0027241: Create a complete test case to verify reading of all attribute types from...
[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 <StdObject_Location.hxx>
20 #include <StdPersistent_TopoDS.hxx>
21
22 #include <TopoDS_Shape.hxx>
23
24
25 class StdObject_Shape
26 {
27 public:
28   //! Import transient object from the persistent data.
29   Standard_EXPORT TopoDS_Shape Import() const;
30
31 protected:
32   //! Read persistent data from a file.
33   inline void read (StdObjMgt_ReadData& theReadData)
34     { theReadData >> myTShape >> myLocation >> myOrient; }
35
36 private:
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&);
43 };
44
45 //! Read persistent data from a file.
46 inline StdObjMgt_ReadData& operator >>
47   (StdObjMgt_ReadData::Object theReadData, StdObject_Shape& theShape)
48 {
49   theShape.read (theReadData);
50   return theReadData;
51 }
52
53 #endif