stuff-from-scratch/src/publishing/pdf/PdfPageTree.h

24 lines
359 B
C
Raw Normal View History

2022-01-01 18:46:31 +00:00
#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;
};