// Copyright (C) 2021 Jakub Melka // // This file is part of PDF4QT. // // PDF4QT is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // with the written consent of the copyright owner, any later version. // // PDF4QT is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with PDF4QT. If not, see . #ifndef PDFXFAENGINE_H #define PDFXFAENGINE_H #include "pdfglobal.h" #include #include namespace pdf { namespace xfa { struct XFA_InplaceTag; struct XFA_SharedMemoryTag; template class PDFXFAValueHolder { public: constexpr inline bool hasValue() const { return false; } constexpr const Value* getValue() const { return nullptr; } }; template class PDFXFAValueHolder { public: inline constexpr PDFXFAValueHolder(std::optional value) : m_value(std::move(value)) { } constexpr inline bool hasValue() const { return m_value.has_value(); } constexpr const Value* getValue() const { return m_value.has_value() ? &m_value.value() : nullptr; } private: std::optional m_value; }; template class PDFXFAValueHolder { public: inline constexpr PDFXFAValueHolder(std::optional value) : m_value() { if (value) { m_value = std::make_shared(std::move(*value)); } } constexpr inline bool hasValue() const { return m_value; } constexpr const Value* getValue() const { return m_value.get(); } private: std::shared_ptr m_value; }; template using XFA_Attribute = PDFXFAValueHolder; template using XFA_Node = PDFXFAValueHolder; template using XFA_Value = PDFXFAValueHolder; class XFA_Measurement { public: enum Type { in, cm, mm, pt, em, percent }; constexpr inline XFA_Measurement() : m_value(0.0), m_type(in) { } constexpr inline XFA_Measurement(PDFReal value, Type type) : m_value(value), m_type(type) { } constexpr inline XFA_Measurement(PDFReal value) : m_value(value), m_type(in) { } constexpr PDFReal getValue() const { return m_value; } constexpr Type getType() const { return m_type; } private: PDFReal m_value; Type m_type; }; class XFA_AbstractNode { public: constexpr inline XFA_AbstractNode() = default; virtual ~XFA_AbstractNode(); }; } // namespace xfa class PDFXFAEngine { public: PDFXFAEngine(); private: }; /* START GENERATED CODE */ namespace xfa { } // namespace xfa /* END GENERATED CODE */ } // namespace pdf #endif // PDFXFAENGINE_H