aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Integer.hh
blob: cc11cd65d19becebf2de3354f3154ed9dad38c92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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__