mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
12 lines
115 B
C++
12 lines
115 B
C++
|
#include <qpdf/QPDF_Null.hh>
|
||
|
|
||
|
QPDF_Null::~QPDF_Null()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
std::string
|
||
|
QPDF_Null::unparse()
|
||
|
{
|
||
|
return "null";
|
||
|
}
|