2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 21:19:06 +00:00
qpdf/libqpdf/QPDF_Integer.cc
Jay Berkenbilt 16f4f94cd9 Prepare code for JSON v2
Update getJSON() methods and calls to them
2022-05-07 11:12:01 -04:00

39 lines
531 B
C++

#include <qpdf/QPDF_Integer.hh>
#include <qpdf/QUtil.hh>
QPDF_Integer::QPDF_Integer(long long val) :
val(val)
{
}
std::string
QPDF_Integer::unparse()
{
return QUtil::int_to_string(this->val);
}
JSON
QPDF_Integer::getJSON(int json_version)
{
return JSON::makeInt(this->val);
}
QPDFObject::object_type_e
QPDF_Integer::getTypeCode() const
{
return QPDFObject::ot_integer;
}
char const*
QPDF_Integer::getTypeName() const
{
return "integer";
}
long long
QPDF_Integer::getVal() const
{
return this->val;
}