platformthread.h 256 B

123456789101112131415161718
  1. #ifndef PLATFORMTHREAD_H
  2. #define PLATFORMTHREAD_H
  3. #include <QThread>
  4. class PlatformThread : public QThread
  5. {
  6. Q_OBJECT
  7. public:
  8. PlatformThread(QObject *parent = nullptr);
  9. ~PlatformThread();
  10. private:
  11. virtual void run();
  12. };
  13. #endif // PLATFORMTHREAD_H