blob: 38b6d225e201de83432440db82c8177317358935 (
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;
}
|