14 lines
239 B
C++
14 lines
239 B
C++
#ifndef PREVIEWGENERATOR_H
|
|
#define PREVIEWGENERATOR_H
|
|
|
|
#include <QThread>
|
|
|
|
class PreviewGenerator : public QThread
|
|
{
|
|
public:
|
|
PreviewGenerator(QObject* parent = 0);
|
|
void run() override;
|
|
};
|
|
|
|
#endif // PREVIEWGENERATOR_H
|