mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 17:45:09 +00:00
8a217eb3a2
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.
14 lines
212 B
C++
14 lines
212 B
C++
#include <qpdf/QPDF_Reserved.hh>
|
|
#include <stdexcept>
|
|
|
|
QPDF_Reserved::~QPDF_Reserved()
|
|
{
|
|
}
|
|
|
|
std::string
|
|
QPDF_Reserved::unparse()
|
|
{
|
|
throw std::logic_error("attempt to unparse QPDF_Reserved");
|
|
return "";
|
|
}
|