#ifndef HOSTTHREAD_H #define HOSTTHREAD_H #include class HostThread : public QThread { Q_OBJECT public: explicit HostThread(QObject *parent = nullptr); void upDataHost(); protected: void run() override; }; #endif // HOSTTHREAD_H