Parsing X Reference table

This commit is contained in:
Jakub Melka
2018-11-21 19:30:15 +01:00
parent 58ad59e407
commit 8c93c82228
19 changed files with 625 additions and 58 deletions

View File

@ -29,6 +29,7 @@
namespace pdf
{
class PDFDictionary;
/// This class represents a content of the PDF object. It can be
/// array of objects, dictionary, content stream data, or string data.
@ -98,6 +99,7 @@ public:
inline PDFInteger getInteger() const { return std::get<PDFInteger>(m_data); }
QByteArray getString() const;
const PDFDictionary* getDictionary() const;
bool operator==(const PDFObject& other) const;
bool operator!=(const PDFObject& other) const { return !(*this == other); }