// Copyright (c) 2015 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _StdPersistent_DataXtd_HeaderFile #define _StdPersistent_DataXtd_HeaderFile #include #include #include #include #include #include #include #include #include #include class StdPersistent_DataXtd { class _void : private StdLPersistent_Void { public: template struct Instance : instance {}; }; public: typedef _void::Instance Shape; typedef _void::Instance Point; typedef _void::Instance Axis; typedef _void::Instance Plane; typedef _void::Instance Placement; class Geometry : public StdObjMgt_Attribute::SingleInt { public: //! Import transient attribuite from the persistent data. Standard_EXPORT virtual void ImportAttribute(); }; class Position : public StdObjMgt_Attribute::Simple { public: //! Import transient attribuite from the persistent data. Standard_EXPORT virtual void ImportAttribute(); }; }; template<> inline Standard_CString StdLPersistent_Void::instance::PName() const { return "PDataXtd_Shape"; } template<> inline Standard_CString StdLPersistent_Void::instance::PName() const { return "PDataXtd_Point"; } template<> inline Standard_CString StdLPersistent_Void::instance::PName() const { return "PDataXtd_Axis"; } template<> inline Standard_CString StdLPersistent_Void::instance::PName() const { return "PDataXtd_Plane"; } template<> inline Standard_CString StdLPersistent_Void::instance::PName() const { return "PDataXtd_Placement"; } template<> template<> inline Standard_CString StdObjMgt_Attribute::Simple::PName() const { return "PDataXtd_Geometry"; } template<> template<> inline Standard_CString StdObjMgt_Attribute::Simple::PName() const { return "PDataXtd_Position"; } #endif