OSCAR-code/thirdparty/qtxmlrpc/xmlrpctest/client.h
2019-02-11 17:37:29 -05:00

27 lines
392 B
C++

#ifndef CLIENT_H
#define CLIENT_H
#include <QObject>
#include <QVariant>
class Client : QObject
{
Q_OBJECT
public:
Client( const QString &address, quint16 port, QObject *parent = 0 );
void testFunc( const QVariant &param );
private slots:
void onDataReady( const QVariant &response );
private:
QString address;
quint16 port;
};
#endif // CLIENT_H