mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-17 18:15:09 +00:00
f3d7c26de1
git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649
14 lines
213 B
C++
14 lines
213 B
C++
#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__
|