mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-28 17:48:27 +00:00
f3d7c26de1
git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649
20 lines
367 B
C++
20 lines
367 B
C++
#ifndef __QPDF_REAL_HH__
|
|
#define __QPDF_REAL_HH__
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_Real: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_Real(std::string const& val);
|
|
virtual ~QPDF_Real();
|
|
std::string unparse();
|
|
std::string getVal();
|
|
|
|
private:
|
|
// Store reals as strings to avoid roundoff errors.
|
|
std::string val;
|
|
};
|
|
|
|
#endif // __QPDF_REAL_HH__
|