aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Null.hh
blob: 16833424420839c8d0180d82a0310634a54012dd (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/QPDFObject.hh>

class QPDF_Null: public QPDFObject
{
  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 QPDFObject::object_type_e getTypeCode() const;
    virtual char const* getTypeName() const;

  private:
    QPDF_Null() = default;
};

#endif // QPDF_NULL_HH