1
0
mirror of https://github.com/itay-grudev/SingleApplication.git synced 2025-03-18 20:02:39 +08:00
SingleApplication/examples/sending_arguments/messagereceiver.h

16 lines
296 B
C
Raw Normal View History

#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