mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
35 lines
810 B
C++
35 lines
810 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::copy(bool shallow)
|
|
{
|
|
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 "";
|
|
}
|
|
|
|
void
|
|
QPDF_Unresolved::writeJSON(int json_version, JSON::Writer& p)
|
|
{
|
|
throw std::logic_error("attempted to get JSON from an unresolved QPDFObjectHandle");
|
|
}
|