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

#include <qpdf/QPDFValue.hh>

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

  private:
    QPDF_Reserved();
};

#endif // QPDF_RESERVED_HH