summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFObjGen.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFObjGen.cc')
-rw-r--r--libqpdf/QPDFObjGen.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/libqpdf/QPDFObjGen.cc b/libqpdf/QPDFObjGen.cc
new file mode 100644
index 00000000..e43a0aea
--- /dev/null
+++ b/libqpdf/QPDFObjGen.cc
@@ -0,0 +1,26 @@
+#include <qpdf/QPDFObjGen.hh>
+
+QPDFObjGen::QPDFObjGen(int o = 0, int g = 0) :
+ obj(o),
+ gen(g)
+{
+}
+
+bool
+QPDFObjGen::operator<(QPDFObjGen const& rhs) const
+{
+ return ((this->obj < rhs.obj) ||
+ ((this->obj == rhs.obj) && (this->gen < rhs.gen)));
+}
+
+int
+QPDFObjGen::getObj() const
+{
+ return this->obj;
+}
+
+int
+QPDFObjGen::getGen() const
+{
+ return this->gen;
+}