#ifndef QPDF_UNRESOLVED_HH #define QPDF_UNRESOLVED_HH #include class QPDF_Unresolved: public QPDFValue { public: ~QPDF_Unresolved() override = default; static std::shared_ptr create(QPDF* qpdf, QPDFObjGen const& og); std::shared_ptr copy(bool shallow = false) override; std::string unparse() override; void writeJSON(int json_version, JSON::Writer& p) override; private: QPDF_Unresolved(QPDF* qpdf, QPDFObjGen const& og); }; #endif // QPDF_UNRESOLVED_HH