fd4943ebea2a04d6ee5ee074863e31081aad896d
[occt.git] / src / StdPersistent / StdPersistent_DataXtd.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_DataXtd_HeaderFile
16 #define _StdPersistent_DataXtd_HeaderFile
17
18 #include <StdObjMgt_Attribute.hxx>
19 #include <StdLPersistent_Void.hxx>
20 #include <StdObject_gp_Vectors.hxx>
21
22 #include <TDataXtd_Shape.hxx>
23 #include <TDataXtd_Point.hxx>
24 #include <TDataXtd_Axis.hxx>
25 #include <TDataXtd_Plane.hxx>
26 #include <TDataXtd_Placement.hxx>
27 #include <TDataXtd_Geometry.hxx>
28 #include <TDataXtd_Position.hxx>
29
30
31 class StdPersistent_DataXtd
32 {
33   class _void : private StdLPersistent_Void
34   {
35   public:
36     template <class AttribClass>
37     struct Instance : instance<AttribClass> {};
38   };
39
40 public:
41   typedef _void::Instance<TDataXtd_Shape>     Shape;
42   typedef _void::Instance<TDataXtd_Point>     Point;
43   typedef _void::Instance<TDataXtd_Axis>      Axis;
44   typedef _void::Instance<TDataXtd_Plane>     Plane;
45   typedef _void::Instance<TDataXtd_Placement> Placement;
46
47   class Geometry : public StdObjMgt_Attribute<TDataXtd_Geometry>::SingleInt
48   {
49   public:
50     //! Import transient attribuite from the persistent data.
51     Standard_EXPORT virtual void ImportAttribute();
52   };
53
54   class Position : public StdObjMgt_Attribute<TDataXtd_Position>::Simple<gp_Pnt>
55   {
56   public:
57     //! Import transient attribuite from the persistent data.
58     Standard_EXPORT virtual void ImportAttribute();
59   };
60 };
61
62 #endif