2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 09:50:54 +00:00
qpdf/libqpdf/qpdf/QPDF_Integer.hh

22 lines
450 B
C++
Raw Permalink Normal View History

#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();
2018-12-17 22:40:29 +00:00
virtual JSON getJSON();
virtual QPDFObject::object_type_e getTypeCode() const;
virtual char const* getTypeName() const;
long long getVal() const;
private:
long long val;
};
#endif // QPDF_INTEGER_HH