mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-19 20:25:29 +08:00
Initial commit
This commit is contained in:
19
blacklib/samples/com_client/client.h
Normal file
19
blacklib/samples/com_client/client.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user