#ifndef PDFPROCESSOR_H #define PDFPROCESSOR_H #include #include "processor.h" class PdfProcessor : public Processor { public: PdfProcessor(); public: QVector createOutline(const QVector &outlineItems) const; DocumentProcessResult process(const QByteArray &data) const override; }; #endif // PDFPROCESSOR_H