mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 11:46:35 +00:00
f0a8178091
Move responsibility for creating shared pointers to objects and cloning from QPDFObjectHandle to QPDFObject.
48 lines
829 B
C++
48 lines
829 B
C++
#include <qpdf/QPDFObject.hh>
|
|
|
|
QPDFObject::QPDFObject() :
|
|
owning_qpdf(0),
|
|
parsed_offset(-1)
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<QPDFObject>
|
|
QPDFObject::do_create(QPDFObject* object)
|
|
{
|
|
std::shared_ptr<QPDFObject> obj(object);
|
|
return obj;
|
|
}
|
|
|
|
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;
|
|
}
|