2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-08 21:22:25 +00:00
qpdf/libqpdf/QPDF_Destroyed.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

40 lines
827 B
C++

#include <qpdf/QPDF_Destroyed.hh>
#include <stdexcept>
QPDF_Destroyed::QPDF_Destroyed() :
QPDFValue(::ot_destroyed, "destroyed")
{
}
std::shared_ptr<QPDFValue>
QPDF_Destroyed::getInstance()
{
static std::shared_ptr<QPDFValue> instance(new QPDF_Destroyed());
return instance;
}
std::shared_ptr<QPDFObject>
QPDF_Destroyed::shallowCopy()
{
throw std::logic_error(
"attempted to shallow copy QPDFObjectHandle from destroyed QPDF");
return nullptr;
}
std::string
QPDF_Destroyed::unparse()
{
throw std::logic_error(
"attempted to unparse a QPDFObjectHandle from a destroyed QPDF");
return "";
}
JSON
QPDF_Destroyed::getJSON(int json_version)
{
throw std::logic_error(
"attempted to get JSON from a QPDFObjectHandle from a destroyed QPDF");
return JSON::makeNull();
}