mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-01-06 00:54:00 +00:00
16 lines
294 B
C++
16 lines
294 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
|