hostthread.h 260 B

123456789101112131415161718
  1. #ifndef HOSTTHREAD_H
  2. #define HOSTTHREAD_H
  3. #include <QThread>
  4. class HostThread : public QThread
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit HostThread(QObject *parent = nullptr);
  9. void upDataHost();
  10. protected:
  11. void run() override;
  12. };
  13. #endif // HOSTTHREAD_H