13 lines
346 B
C
13 lines
346 B
C
|
#ifndef PREVIEWGENERATORPLAINTEXT_H
|
||
|
#define PREVIEWGENERATORPLAINTEXT_H
|
||
|
#include "previewgenerator.h"
|
||
|
|
||
|
class PreviewGeneratorPlainText : public PreviewGenerator
|
||
|
{
|
||
|
public:
|
||
|
using PreviewGenerator::PreviewGenerator;
|
||
|
PreviewResult *generate(RenderConfig config, QString documentPath, unsigned int page);
|
||
|
};
|
||
|
|
||
|
#endif // PREVIEWGENERATORPLAINTEXT_H
|