mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
19 lines
349 B
C++
19 lines
349 B
C++
#include <blackmisc/message_system.h>
|
|
#include <blackmisc/com_client.h>
|
|
|
|
class Client : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Client(QObject *parent = NULL);
|
|
~Client();
|
|
|
|
protected slots:
|
|
|
|
void onError(QAbstractSocket::SocketError,QString);
|
|
void onClientConnected();
|
|
|
|
private:
|
|
BlackMisc::CComClient comclient;
|
|
}; |