mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
22 lines
525 B
C++
22 lines
525 B
C++
#ifndef QPDF_RESERVED_HH
|
|
#define QPDF_RESERVED_HH
|
|
|
|
#include <qpdf/QPDFValue.hh>
|
|
|
|
class QPDF_Reserved: public QPDFValue
|
|
{
|
|
public:
|
|
virtual ~QPDF_Reserved() = default;
|
|
static std::shared_ptr<QPDFObject> create();
|
|
virtual std::shared_ptr<QPDFObject> shallowCopy();
|
|
virtual std::string unparse();
|
|
virtual JSON getJSON(int json_version);
|
|
virtual qpdf_object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
|
|
private:
|
|
QPDF_Reserved() = default;
|
|
};
|
|
|
|
#endif // QPDF_RESERVED_HH
|