2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-19 10:22:22 +00:00
qpdf/libqpdf/QPDF_Unresolved.cc
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

39 lines
842 B
C++

#include <qpdf/QPDF_Unresolved.hh>
#include <stdexcept>
QPDF_Unresolved::QPDF_Unresolved(QPDF* qpdf, QPDFObjGen const& og) :
QPDFValue(::ot_unresolved, "unresolved", qpdf, og)
{
}
std::shared_ptr<QPDFObject>
QPDF_Unresolved::create(QPDF* qpdf, QPDFObjGen const& og)
{
return do_create(new QPDF_Unresolved(qpdf, og));
}
std::shared_ptr<QPDFObject>
QPDF_Unresolved::shallowCopy()
{
throw std::logic_error(
"attempted to shallow copy an unresolved QPDFObjectHandle");
return nullptr;
}
std::string
QPDF_Unresolved::unparse()
{
throw std::logic_error(
"attempted to unparse an unresolved QPDFObjectHandle");
return "";
}
JSON
QPDF_Unresolved::getJSON(int json_version)
{
throw std::logic_error(
"attempted to get JSON from an unresolved QPDFObjectHandle");
return JSON::makeNull();
}