#ifndef LOADRUNABLE_H #define LOADRUNABLE_H #include #include 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