OSCAR-code/3rdparty/qtxmlrpc/xmlrpctest/server.h
Mark Watkins 12eac71eb4 Separated QuaZip and QExtSerialPort, Oximetry work
Using official source which has been placed in 3rdparty folder
Oximetry button temporarily autostarts import.. Still a Work in progress.
2013-09-16 14:38:20 +10: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