mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
18 lines
399 B
C
18 lines
399 B
C
|
// This class receives async-ed signals from the plugin notifier,
|
||
|
// and executes GUI requests.
|
||
|
//
|
||
|
// It is never called directly: it is called by Qt signal-received callback,
|
||
|
// in the main GUI thread.
|
||
|
//
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class PluginGUIHandler: public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public slots:
|
||
|
void ReceivedInvitation(const QString& peer_id) ;
|
||
|
void ReceivedVoipData(const QString& peer_id) ;
|
||
|
};
|