summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Integer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDF_Integer.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Integer.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/libqpdf/qpdf/QPDF_Integer.hh b/libqpdf/qpdf/QPDF_Integer.hh
new file mode 100644
index 00000000..fb6360b2
--- /dev/null
+++ b/libqpdf/qpdf/QPDF_Integer.hh
@@ -0,0 +1,19 @@
+
+#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__