mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-05 21:07:50 +00:00
41 lines
649 B
C++
41 lines
649 B
C++
#include <qpdf/QPDF_Integer.hh>
|
|
|
|
#include <qpdf/JSON_writer.hh>
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
QPDF_Integer::QPDF_Integer(long long val) :
|
|
QPDFValue(::ot_integer, "integer"),
|
|
val(val)
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<QPDFObject>
|
|
QPDF_Integer::create(long long value)
|
|
{
|
|
return do_create(new QPDF_Integer(value));
|
|
}
|
|
|
|
std::shared_ptr<QPDFObject>
|
|
QPDF_Integer::copy(bool shallow)
|
|
{
|
|
return create(val);
|
|
}
|
|
|
|
std::string
|
|
QPDF_Integer::unparse()
|
|
{
|
|
return std::to_string(this->val);
|
|
}
|
|
|
|
void
|
|
QPDF_Integer::writeJSON(int json_version, JSON::Writer& p)
|
|
{
|
|
p << std::to_string(this->val);
|
|
}
|
|
|
|
long long
|
|
QPDF_Integer::getVal() const
|
|
{
|
|
return this->val;
|
|
}
|