mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 20:25:43 +08: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
|