2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-25 23:02:38 +00:00
qpdf/libqpdf/qpdf/QPDF_Integer.hh
Jay Berkenbilt 781c313058 Change QPDF_Integer from int to long long
This makes it possible to store offsets that are larger than 2 GB in
the trailer dictionary.
2012-06-24 15:20:01 -04:00

19 lines
330 B
C++

#ifndef __QPDF_INTEGER_HH__
#define __QPDF_INTEGER_HH__
#include <qpdf/QPDFObject.hh>
class QPDF_Integer: public QPDFObject
{
public:
QPDF_Integer(long long val);
virtual ~QPDF_Integer();
virtual std::string unparse();
long long getVal() const;
private:
long long val;
};
#endif // __QPDF_INTEGER_HH__