mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 19:49:43 +00:00
41 lines
693 B
C++
41 lines
693 B
C++
#include <qpdf/QPDFObject.hh>
|
|
|
|
QPDFObject::QPDFObject() :
|
|
owning_qpdf(0),
|
|
parsed_offset(-1)
|
|
{
|
|
}
|
|
|
|
void
|
|
QPDFObject::setDescription(QPDF* qpdf, std::string const& description)
|
|
{
|
|
this->owning_qpdf = qpdf;
|
|
this->object_description = description;
|
|
}
|
|
|
|
bool
|
|
QPDFObject::getDescription(QPDF*& qpdf, std::string& description)
|
|
{
|
|
qpdf = this->owning_qpdf;
|
|
description = this->object_description;
|
|
return this->owning_qpdf != 0;
|
|
}
|
|
|
|
bool
|
|
QPDFObject::hasDescription()
|
|
{
|
|
return this->owning_qpdf != 0;
|
|
}
|
|
|
|
void
|
|
QPDFObject::setParsedOffset(qpdf_offset_t offset)
|
|
{
|
|
this->parsed_offset = offset;
|
|
}
|
|
|
|
qpdf_offset_t
|
|
QPDFObject::getParsedOffset()
|
|
{
|
|
return this->parsed_offset;
|
|
}
|