2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-20 02:42:22 +00:00
qpdf/libqpdf/qpdf/QPDF_Unresolved.hh

20 lines
511 B
C++

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