Clean up som pdf code.
This commit is contained in:
parent
650cfa5c6f
commit
290b64e230
24 changed files with 264 additions and 256 deletions
|
@ -7,7 +7,7 @@
|
|||
class PdfOutline : public PdfObject
|
||||
{
|
||||
public:
|
||||
std::string ToString(PdfXRefTable* xRefTable) override;
|
||||
std::string toString(PdfXRefTable* xRefTable) override;
|
||||
};
|
||||
using PdfOutlinePtr = std::unique_ptr<PdfOutline>;
|
||||
|
||||
|
@ -15,11 +15,11 @@ class PdfOutlineCollection : public PdfObject
|
|||
{
|
||||
public:
|
||||
|
||||
unsigned IndexObjects(unsigned count) override;
|
||||
unsigned indexObjects(unsigned count) override;
|
||||
|
||||
std::string ToString(PdfXRefTable* xRefTable) override;
|
||||
std::string toString(PdfXRefTable* xRefTable) override;
|
||||
|
||||
void UpdateDictionary();
|
||||
void updateDictionary();
|
||||
|
||||
private:
|
||||
std::vector<PdfOutlinePtr> mOutlines;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue