Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
ConnectThread.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef CCONNECTTHREAD_H
4#define CCONNECTTHREAD_H
5
6#pragma once
7
8#include <QThread>
9#include "ConnecterThread.h"
10
22class CConnectThread : public QThread
23{
24 Q_OBJECT
25public:
27 virtual ~CConnectThread() override;
28
29protected:
30 virtual void run() override;
31
32protected:
33 CConnecterThread* m_pConnecter;
34};
35
36#endif // CCONNECTTHREAD_H
The class only is used by CConnecterThread.
virtual void run() override
It starts a background thread by default.