mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-31 10:58:25 +00:00
913eb5ac35
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types.
16 lines
345 B
C++
16 lines
345 B
C++
#ifndef __QPDF_RESERVED_HH__
|
|
#define __QPDF_RESERVED_HH__
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_Reserved: public QPDFObject
|
|
{
|
|
public:
|
|
virtual ~QPDF_Reserved();
|
|
virtual std::string unparse();
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
};
|
|
|
|
#endif // __QPDF_RESERVED_HH__
|