aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Destroyed.hh
blob: 78c2d6017b38373e62d3b67cc004e77a8787f8fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef QPDF_DESTROYED_HH
#define QPDF_DESTROYED_HH

#include <qpdf/QPDFValue.hh>

class QPDF_Destroyed: public QPDFValue
{
  public:
    virtual ~QPDF_Destroyed() = default;
    virtual std::shared_ptr<QPDFValueProxy> shallowCopy();
    virtual std::string unparse();
    virtual JSON getJSON(int json_version);
    static std::shared_ptr<QPDFValue> getInstance();

  private:
    QPDF_Destroyed();
};

#endif // QPDF_DESTROYED_HH