mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 09:37:08 +00:00
f3d7c26de1
git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649
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__
|