2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-29 00:10:54 +00:00
qpdf/libqpdf/QPDF_Real.cc

23 lines
242 B
C++
Raw Normal View History

#include <qpdf/QPDF_Real.hh>
QPDF_Real::QPDF_Real(std::string const& val) :
val(val)
{
}
QPDF_Real::~QPDF_Real()
{
}
std::string
QPDF_Real::unparse()
{
return this->val;
}
std::string
QPDF_Real::getVal()
{
return this->val;
}