aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Destroyed.hh
blob: 9259a2dcf9fd70d3eae959f13d9526f41d013a23 (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:
    ~QPDF_Destroyed() override = default;
    std::shared_ptr<QPDFObject> copy(bool shallow = false) override;
    std::string unparse() override;
    void writeJSON(int json_version, JSON::Writer& p) override;
    static std::shared_ptr<QPDFValue> getInstance();

  private:
    QPDF_Destroyed();
};

#endif // QPDF_DESTROYED_HH