Add clang support.
This commit is contained in:
parent
3fad113178
commit
e559f9674d
27 changed files with 84 additions and 63 deletions
|
@ -19,7 +19,7 @@ public:
|
|||
|
||||
std::string toString(PdfXRefTable* xRefTable) override;
|
||||
|
||||
void updateDictionary();
|
||||
void updateDictionary() override;
|
||||
|
||||
private:
|
||||
std::vector<PdfOutlinePtr> mOutlines;
|
||||
|
|
|
@ -17,7 +17,7 @@ class PdfFont : public PdfObject
|
|||
public:
|
||||
std::string toString(PdfXRefTable* xRefTable) override;
|
||||
|
||||
void updateDictionary();
|
||||
void updateDictionary() override;
|
||||
};
|
||||
|
||||
class PdfPage : public PdfObject
|
||||
|
@ -25,11 +25,11 @@ class PdfPage : public PdfObject
|
|||
public:
|
||||
PdfPage(PdfPageTree* parent);
|
||||
|
||||
unsigned indexObjects(unsigned count);
|
||||
unsigned indexObjects(unsigned count) override;
|
||||
|
||||
std::string toString(PdfXRefTable* xRefTable) override;
|
||||
|
||||
void updateDictionary();
|
||||
void updateDictionary() override;
|
||||
|
||||
private:
|
||||
unsigned mWidth{612};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue