mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 03:42:30 +00:00
eeb6162f76
Also, revert inlining of unparse and operator << from commit 4c6640c
in
order to avoid exposing QUtil.
18 lines
333 B
C++
18 lines
333 B
C++
#include <qpdf/QPDFObjGen.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
std::ostream&
|
|
operator<<(std::ostream& os, const QPDFObjGen& og)
|
|
{
|
|
os << og.obj << "," << og.gen;
|
|
return os;
|
|
}
|
|
|
|
std::string
|
|
QPDFObjGen::unparse(char separator) const
|
|
{
|
|
return QUtil::int_to_string(this->obj) + separator +
|
|
QUtil::int_to_string(this->gen);
|
|
}
|