OSCAR-code/3rdparty/qtxmlrpc/xmlrpctest/server.h

19 lines
288 B
C
Raw Normal View History

2013-09-16 04:45:50 +00:00
#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