mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 17:45:09 +00:00
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 "";
|
||
|
}
|