mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
15 lines
296 B
C++
15 lines
296 B
C++
#ifndef MESSAGERECEIVER_H
|
|
#define MESSAGERECEIVER_H
|
|
|
|
#include <QObject>
|
|
|
|
class MessageReceiver : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MessageReceiver(QObject *parent = 0);
|
|
public slots:
|
|
void receivedMessage( int instanceId, QByteArray message );
|
|
};
|
|
|
|
#endif // MESSAGERECEIVER_H
|