2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 21:19:06 +00:00
qpdf/libqpdf/QPDF_Bool.cc
Jay Berkenbilt 6c61be00e8 Rename QPDFObject -> QPDFValueProxy
This is in preparation for restoring a QPDFObject.hh to ease the
transition on qpdf_object_type_e.

This commit was created by
* Renaming QPDFObject.cc and QPDFObject.hh
* Replacing QPDFObject\b with QPDFValueProxy (where \b is word
  boundary)
* Running format-code
* Manually resorting files in libqpdf/CMakeLists.txt
* Manually refilling the comment in QPDF.hh near class Resolver
2022-09-05 18:52:59 -04:00

38 lines
535 B
C++

#include <qpdf/QPDF_Bool.hh>
QPDF_Bool::QPDF_Bool(bool val) :
QPDFValue(::ot_boolean, "boolean"),
val(val)
{
}
std::shared_ptr<QPDFValueProxy>
QPDF_Bool::create(bool value)
{
return do_create(new QPDF_Bool(value));
}
std::shared_ptr<QPDFValueProxy>
QPDF_Bool::shallowCopy()
{
return create(val);
}
std::string
QPDF_Bool::unparse()
{
return (val ? "true" : "false");
}
JSON
QPDF_Bool::getJSON(int json_version)
{
return JSON::makeBool(this->val);
}
bool
QPDF_Bool::getVal() const
{
return this->val;
}