mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-09 23:28:29 +00:00
This makes it possible to store offsets that are larger than 2 GB in the trailer dictionary.
19 lines
330 B
C++
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__
|