2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-15 16:42:19 +00:00
qpdf/libqpdf/QPDF_Null.cc
Jay Berkenbilt 18a583e8d9 Rename QPDFValueProxy back to QPDFObject
QPDFValueProxy wasn't a good name for it. We decided the evil of
having the header file be named QPDFObject_private.hh was less than
the evil of having the class be named something other than what it
should have been named.
2022-09-08 11:29:23 -04:00

31 lines
396 B
C++

#include <qpdf/QPDF_Null.hh>
QPDF_Null::QPDF_Null() :
QPDFValue(::ot_null, "null")
{
}
std::shared_ptr<QPDFObject>
QPDF_Null::create()
{
return do_create(new QPDF_Null());
}
std::shared_ptr<QPDFObject>
QPDF_Null::shallowCopy()
{
return create();
}
std::string
QPDF_Null::unparse()
{
return "null";
}
JSON
QPDF_Null::getJSON(int json_version)
{
return JSON::makeNull();
}