blob: 35132a2198c838a171995eca84d5adf897cda79f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "remoteinterface.h"
RemoteInterface::RemoteInterface(QObject *parent) : QXmppInvokable(parent)
{
}
bool RemoteInterface::isAuthorized(const QString &jid) const
{
Q_UNUSED(jid);
return true;
}
QString RemoteInterface::echoString(const QString &message)
{
return "Echo: " + message;
}
|