mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
See : https://github.com/itay-grudev/SingleApplication git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5481 bfdf4180-ca20-0410-9c96-a3a8aa849046
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
|