aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Destroyed.cc
blob: e12a9975dcefd4337194416346032138712007ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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();
}