mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-02 20:08:24 +00:00
19 lines
312 B
C++
19 lines
312 B
C++
|
#ifndef __QPDF_INTEGER_HH__
|
||
|
#define __QPDF_INTEGER_HH__
|
||
|
|
||
|
#include <qpdf/QPDFObject.hh>
|
||
|
|
||
|
class QPDF_Integer: public QPDFObject
|
||
|
{
|
||
|
public:
|
||
|
QPDF_Integer(int val);
|
||
|
virtual ~QPDF_Integer();
|
||
|
virtual std::string unparse();
|
||
|
int getVal() const;
|
||
|
|
||
|
private:
|
||
|
int val;
|
||
|
};
|
||
|
|
||
|
#endif // __QPDF_INTEGER_HH__
|