Add clang support.

This commit is contained in:
James Grogan 2023-01-23 11:32:18 +00:00
parent 3fad113178
commit e559f9674d
27 changed files with 84 additions and 63 deletions

View file

@ -19,7 +19,7 @@ public:
std::string toString(PdfXRefTable* xRefTable) override;
void updateDictionary();
void updateDictionary() override;
private:
std::vector<PdfOutlinePtr> mOutlines;

View file

@ -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};