mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
913eb5ac35
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types.
16 lines
325 B
C++
16 lines
325 B
C++
#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__
|