2
1
mirror of https://github.com/qpdf/qpdf.git synced 2025-02-02 20:08:24 +00:00
qpdf/libqpdf/qpdf/QPDF_Integer.hh

19 lines
312 B
C++
Raw Normal View History

#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__