2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 09:20:52 +00:00
qpdf/libqpdf/qpdf/QPDF_Reserved.hh
Jay Berkenbilt 8a217eb3a2 Add concept of reserved objects
QPDFObjectHandle::{new,is,assert}Reserved, QPDF::replaceReserved
provide a mechanism to add objects to a PDF file when there are
circular references.  This is a prerequisite to copying objects from
one PDF to another.
2012-07-10 23:34:32 -04:00

14 lines
241 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();
};
#endif // __QPDF_RESERVED_HH__