PoDoFo 1.2.0
Loading...
Searching...
No Matches
PdfTrailer.h
1// SPDX-FileCopyrightText: 2021 Francesco Pretto <ceztko@gmail.com>
2// SPDX-License-Identifier: LGPL-2.0-or-later OR MPL-2.0
3
4#ifndef PDF_TRAILER
5#define PDF_TRAILER
6
7#include "PdfElement.h"
8
9namespace PoDoFo
10{
11 class PODOFO_API PdfTrailer final : public PdfDictionaryElement
12 {
13 friend class PdfDocument;
14 private:
15 PdfTrailer(PdfObject& obj);
16 public:
17 };
18}
19
20#endif // PDF_TRAILER
All classes, functions, types and enums of PoDoFo are members of these namespace.
Definition basetypes.h:13