Files
tenmon/loadrunable.h
T

19 lines
289 B
C++

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