Files
pilotclient/samples/com_client/client.h
2013-03-11 20:41:29 +01:00

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;
};