BackgroundTask.h 207 B

1234567891011121314
  1. #ifndef BACKGROUNDTASK_H
  2. #define BACKGROUNDTASK_H
  3. #include <QRunnable>
  4. class BackgroundTask
  5. {
  6. public:
  7. BackgroundTask(QRunnable* task);
  8. QRunnable* getRunnable(void);
  9. };
  10. #endif // BACKGROUNDTASK_H