mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-09 23:00:57 +00:00
17 lines
313 B
C++
17 lines
313 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 std::to_string(this->obj) + separator + std::to_string(this->gen);
|
|
}
|