mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
20 lines
350 B
C++
20 lines
350 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;
|
|
};
|