mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
50 lines
811 B
C++
50 lines
811 B
C++
#include <qpdf/QPDFObject.hh>
|
|
|
|
QPDFObject::Members::Members() :
|
|
owning_qpdf(0),
|
|
parsed_offset(-1)
|
|
{
|
|
}
|
|
|
|
QPDFObject::Members::~Members()
|
|
{
|
|
}
|
|
|
|
QPDFObject::QPDFObject() :
|
|
m(new Members)
|
|
{
|
|
}
|
|
|
|
void
|
|
QPDFObject::setDescription(QPDF* qpdf, std::string const& description)
|
|
{
|
|
this->m->owning_qpdf = qpdf;
|
|
this->m->object_description = description;
|
|
}
|
|
|
|
bool
|
|
QPDFObject::getDescription(QPDF*& qpdf, std::string& description)
|
|
{
|
|
qpdf = this->m->owning_qpdf;
|
|
description = this->m->object_description;
|
|
return this->m->owning_qpdf != 0;
|
|
}
|
|
|
|
bool
|
|
QPDFObject::hasDescription()
|
|
{
|
|
return this->m->owning_qpdf != 0;
|
|
}
|
|
|
|
void
|
|
QPDFObject::setParsedOffset(qpdf_offset_t offset)
|
|
{
|
|
this->m->parsed_offset = offset;
|
|
}
|
|
|
|
qpdf_offset_t
|
|
QPDFObject::getParsedOffset()
|
|
{
|
|
return this->m->parsed_offset;
|
|
}
|