stuff-from-scratch/src/publishing/pdf/PdfPageTree.h
2022-12-02 11:50:15 +00:00

21 lines
357 B
C++

#pragma once
#include "PdfObject.h"
class PdfPage;
using PdfPagePtr = std::unique_ptr<PdfPage>;
class PdfPageTree : public PdfObject
{
public:
PdfPageTree();
unsigned indexObjects(unsigned count) override;
std::string toString(PdfXRefTable* xRefTable) override;
void updateDictionary() override;
private:
PdfPagePtr mRootPage;
};