mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
16 lines
296 B
C
16 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
|