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