2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 01:10:51 +00:00
qpdf/libqpdf/qpdf/QPDF_Integer.hh
Jay Berkenbilt f3d7c26de1 removed qexc; non-compatible ABI change
git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649
2009-09-26 18:36:04 +00:00

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__