Files
pilotclient/samples/com_client/client.h
2013-03-16 18:44:46 +01:00

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