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

19 lines
288 B
C++

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