aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Reserved.cc
blob: 368db3b4964b58991dc53af582b1127a9c153255 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 "";
}