// 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 _StdLPersistent_Value_HeaderFile #define _StdLPersistent_Value_HeaderFile #include #include #include #include #include #include #include #include #include class StdLPersistent_Value { template class integer : public StdObjMgt_Attribute::SingleInt { public: //! Import transient attribuite from the persistent data. Standard_EXPORT virtual void ImportAttribute(); }; template class string : public StdObjMgt_Attribute::SingleRef { public: //! Import transient attribuite from the persistent data. Standard_EXPORT virtual void ImportAttribute(); }; public: class TagSource : public integer { public: Standard_CString PName() const { return "PDF_TagSource"; } }; class Reference : public string { public: Standard_CString PName() const { return "PDF_Reference"; } }; class Comment : public string { public: Standard_CString PName() const { return "PDF_Comment"; } }; class UAttribute : public string { public: //! Create an empty transient attribuite Standard_EXPORT virtual Handle(TDF_Attribute) CreateAttribute(); Standard_CString PName() const { return "PDataStd_UAttribute"; } }; class Integer : public integer { public: //! Create an empty transient attribuite Standard_EXPORT virtual Handle(TDF_Attribute) CreateAttribute(); Standard_CString PName() const { return "PDataStd_Integer"; } }; class Name : public string { public: //! Create an empty transient attribuite Standard_EXPORT virtual Handle(TDF_Attribute) CreateAttribute(); Standard_CString PName() const { return "PDataStd_Name"; } }; class AsciiString : public string { public: //! Create an empty transient attribuite Standard_EXPORT virtual Handle(TDF_Attribute) CreateAttribute(); Standard_CString PName() const { return "PDataStd_AsciiString"; } }; }; template<> template<> inline Standard_CString StdObjMgt_Attribute::Simple::PName() const { return "PDF_TagSource"; } template<> template<> inline Standard_CString StdObjMgt_Attribute::Simple::PName() const { return "PDF_Reference"; } template<> template<> inline Standard_CString StdObjMgt_Attribute::Simple::PName() const { return "PDataStd_Comment"; } #endif