cli: Move most classes to shared lib for reuse
This commit is contained in:
13
shared/pdfprocessor.h
Normal file
13
shared/pdfprocessor.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef PDFPROCESSOR_H
|
||||
#define PDFPROCESSOR_H
|
||||
#include "processor.h"
|
||||
class PdfProcessor : public Processor
|
||||
{
|
||||
public:
|
||||
PdfProcessor();
|
||||
|
||||
public:
|
||||
QVector<PageData> process(const QByteArray &data) const override;
|
||||
};
|
||||
|
||||
#endif // PDFPROCESSOR_H
|
||||
Reference in New Issue
Block a user