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

#include <qpdf/QPDFValue.hh>

class QPDF_Reserved: public QPDFValue
{
  public:
    ~QPDF_Reserved() override = default;
    static std::shared_ptr<QPDFObject> create();
    std::shared_ptr<QPDFObject> copy(bool shallow = false) override;
    std::string unparse() override;
    JSON getJSON(int json_version) override;
    void writeJSON(int json_version, JSON::Writer& p) override;

  private:
    QPDF_Reserved();
};

#endif // QPDF_RESERVED_HH