summary refs log tree commit diff
path: root/third_party/SingleApplication-3.3.2/examples/sending_arguments/messagereceiver.h
blob: 50a970c8fbd6811f00321ff2608e3ae316a95cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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