mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-09 04:30:43 +00:00
19 lines
288 B
C++
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 ¶m );
|
|
};
|
|
|
|
#endif // SERVER_H
|