aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Null.hh
blob: 16ca47552416527a8b63a5e69702c5e5b1316f43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __QPDF_NULL_HH__
#define __QPDF_NULL_HH__

#include <qpdf/QPDFObject.hh>

class QPDF_Null: public QPDFObject
{
  public:
    virtual ~QPDF_Null();
    virtual std::string unparse();
    virtual QPDFObject::object_type_e getTypeCode() const;
    virtual char const* getTypeName() const;
};

#endif // __QPDF_NULL_HH__