mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-05 21:07:50 +00:00
52 lines
1015 B
C++
52 lines
1015 B
C++
#include <qpdf/QPDF_Null.hh>
|
|
|
|
#include <qpdf/JSON_writer.hh>
|
|
#include <qpdf/QPDFObject_private.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::create(
|
|
std::shared_ptr<QPDFObject> parent, std::string_view const& static_descr, std::string var_descr)
|
|
{
|
|
auto n = do_create(new QPDF_Null());
|
|
n->setChildDescription(parent, static_descr, var_descr);
|
|
return n;
|
|
}
|
|
|
|
std::shared_ptr<QPDFObject>
|
|
QPDF_Null::create(
|
|
std::shared_ptr<QPDFValue> parent, std::string_view const& static_descr, std::string var_descr)
|
|
{
|
|
auto n = do_create(new QPDF_Null());
|
|
n->setChildDescription(parent, static_descr, var_descr);
|
|
return n;
|
|
}
|
|
|
|
std::shared_ptr<QPDFObject>
|
|
QPDF_Null::copy(bool shallow)
|
|
{
|
|
return create();
|
|
}
|
|
|
|
std::string
|
|
QPDF_Null::unparse()
|
|
{
|
|
return "null";
|
|
}
|
|
|
|
void
|
|
QPDF_Null::writeJSON(int json_version, JSON::Writer& p)
|
|
{
|
|
p << "null";
|
|
}
|