summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFObjGen.cc
blob: e43a0aea3f6ca8ff854ec28c1015daae819dce6c (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
#include <qpdf/QPDFObjGen.hh>

QPDFObjGen::QPDFObjGen(int o = 0, int g = 0) :
    obj(o),
    gen(g)
{
}

bool
QPDFObjGen::operator<(QPDFObjGen const& rhs) const
{
    return ((this->obj < rhs.obj) ||
	    ((this->obj == rhs.obj) && (this->gen < rhs.gen)));
}

int
QPDFObjGen::getObj() const
{
    return this->obj;
}

int
QPDFObjGen::getGen() const
{
    return this->gen;
}