2
1
mirror of https://github.com/qpdf/qpdf.git synced 2025-01-23 23:28:35 +00:00
qpdf/libqpdf/QPDF_Destroyed.cc

35 lines
781 B
C++
Raw Normal View History

#include <qpdf/QPDF_Destroyed.hh>
#include <stdexcept>
QPDF_Destroyed::QPDF_Destroyed() :
2024-08-12 17:52:42 +01:00
QPDFValue(::ot_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::copy(bool shallow)
{
2023-05-21 13:35:09 -04:00
throw std::logic_error("attempted to shallow copy QPDFObjectHandle from destroyed QPDF");
return nullptr;
}
std::string
QPDF_Destroyed::unparse()
{
2023-05-21 13:35:09 -04:00
throw std::logic_error("attempted to unparse a QPDFObjectHandle from a destroyed QPDF");
return "";
}
void
QPDF_Destroyed::writeJSON(int json_version, JSON::Writer& p)
{
throw std::logic_error("attempted to get JSON from a QPDFObjectHandle from a destroyed QPDF");
}