Files
tenmon/loadrunable.h
T

20 lines
328 B
C++

#ifndef LOADRUNABLE_H
#define LOADRUNABLE_H
#include <QRunnable>
#include <QString>
class Image;
class LoadRunable : public QRunnable
{
QString m_file;
Image *m_receiver;
bool m_calculateStats;
public:
LoadRunable(const QString &file, Image *receiver, bool stats);
void run();
};
#endif // LOADRUNABLE_H