2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-22 18:19:08 +00:00
qpdf/libqpdf/qpdf/QPDF_Null.hh

14 lines
213 B
C++
Raw Normal View History

#ifndef __QPDF_NULL_HH__
#define __QPDF_NULL_HH__
#include <qpdf/QPDFObject.hh>
class QPDF_Null: public QPDFObject
{
public:
virtual ~QPDF_Null();
std::string unparse();
};
#endif // __QPDF_NULL_HH__