nheko/third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.h

16 lines
296 B
C
Raw Normal View History

2021-06-16 22:30:45 +02:00
#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