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