mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
db07053214
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4990 b45a01b8-16f6-495d-af2f-9b41ad6348cc
14 lines
343 B
C++
14 lines
343 B
C++
#include <iostream>
|
|
#include "PluginGUIHandler.h"
|
|
|
|
void PluginGUIHandler::ReceivedInvitation(const QString& peer_id)
|
|
{
|
|
std::cerr << "****** Plugin GUI handler: received data!" << std::endl;
|
|
}
|
|
|
|
void PluginGUIHandler::ReceivedVoipData(const QString& peer_id)
|
|
{
|
|
std::cerr << "****** Plugin GUI handler: received invitation!" << std::endl;
|
|
}
|
|
|