aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFObject.cc
blob: 39eb01a2cd24996e2fee3cef1219d9192fda09e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#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;
}