summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Integer.hh
blob: 091392ab4dfabdcc4b14f272148d068d99ef97a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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();
    virtual QPDFObject::object_type_e getTypeCode() const;
    virtual char const* getTypeName() const;
    long long getVal() const;

  private:
    long long val;
};

#endif // __QPDF_INTEGER_HH__