summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Null.hh
blob: 7f722a3a2c9568b3dfe3fd274342cdd810e78615 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef QPDF_NULL_HH
#define QPDF_NULL_HH

#include <qpdf/QPDFValue.hh>

class QPDF_Null: public QPDFValue
{
  public:
    virtual ~QPDF_Null() = default;
    static std::shared_ptr<QPDFObject> create();
    virtual std::shared_ptr<QPDFObject> shallowCopy();
    virtual std::string unparse();
    virtual JSON getJSON(int json_version);
    virtual qpdf_object_type_e getTypeCode() const;
    virtual char const* getTypeName() const;

  private:
    QPDF_Null() = default;
};

#endif // QPDF_NULL_HH