2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-08 21:22:25 +00:00
qpdf/libqpdf/QPDF_Real.cc

48 lines
618 B
C++
Raw Normal View History

#include <qpdf/QPDF_Real.hh>
2012-06-27 03:34:15 +00:00
#include <qpdf/QUtil.hh>
QPDF_Real::QPDF_Real(std::string const& val) :
val(val)
{
}
2012-06-27 03:34:15 +00:00
QPDF_Real::QPDF_Real(double value, int decimal_places) :
val(QUtil::double_to_string(value, decimal_places))
{
}
QPDF_Real::~QPDF_Real()
{
}
std::string
QPDF_Real::unparse()
{
return this->val;
}
2018-12-17 22:40:29 +00:00
JSON
QPDF_Real::getJSON()
{
return JSON::makeNumber(this->val);
}
QPDFObject::object_type_e
QPDF_Real::getTypeCode() const
{
return QPDFObject::ot_real;
}
char const*
QPDF_Real::getTypeName() const
{
return "real";
}
std::string
QPDF_Real::getVal()
{
return this->val;
}