2022-09-08 12:03:57 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2022-09-08 15:29:23 +00:00
|
|
|
std::shared_ptr<QPDFObject>
|
2022-11-14 17:54:12 +00:00
|
|
|
QPDF_Destroyed::copy(bool shallow)
|
2022-09-08 12:03:57 +00:00
|
|
|
{
|
|
|
|
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 "";
|
|
|
|
}
|
|
|
|
|
2024-02-09 13:09:08 +00:00
|
|
|
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");
|
|
|
|
}
|