2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-26 15:13:42 +00:00
qpdf/libqpdf/qpdf/QPDF_Unresolved.hh
Jay Berkenbilt 18a583e8d9 Rename QPDFValueProxy back to QPDFObject
QPDFValueProxy wasn't a good name for it. We decided the evil of
having the header file be named QPDFObject_private.hh was less than
the evil of having the class be named something other than what it
should have been named.
2022-09-08 11:29:23 -04:00

20 lines
494 B
C++

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