aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFObjGen.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFObjGen.cc')
-rw-r--r--libqpdf/QPDFObjGen.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/libqpdf/QPDFObjGen.cc b/libqpdf/QPDFObjGen.cc
index a887720e..6f956239 100644
--- a/libqpdf/QPDFObjGen.cc
+++ b/libqpdf/QPDFObjGen.cc
@@ -1,4 +1,5 @@
#include <qpdf/QPDFObjGen.hh>
+#include <qpdf/QUtil.hh>
QPDFObjGen::QPDFObjGen() :
obj(0),
@@ -42,3 +43,10 @@ std::ostream& operator<<(std::ostream& os, const QPDFObjGen& og)
os << og.obj << "," << og.gen;
return os;
}
+
+std::string
+QPDFObjGen::unparse() const
+{
+ return QUtil::int_to_string(this->obj) + "," +
+ QUtil::int_to_string(this->gen);
+}