5#ifndef QXMPPREMOTEMETHOD_H
6#define QXMPPREMOTEMETHOD_H
15struct QXmppRemoteMethodResult {
16 QXmppRemoteMethodResult() : hasError(false), code(0) { }
23class QXMPP_EXPORT QXmppRemoteMethod :
public QObject
27 QXmppRemoteMethod(
const QString &jid,
const QString &method,
const QVariantList &args,
QXmppClient *client);
28 QXmppRemoteMethodResult call();
31 void gotError(
const QXmppRpcErrorIq &iq);
40 QXmppRemoteMethodResult m_result;
The QXmppClient class is the main class for using QXmpp.
Definition QXmppClient.h:85
The QXmppRpcInvokeIq class represents an IQ used to carry an RPC invocation as specified by XEP-0009 ...
Definition QXmppRpcIq.h:61
The QXmppRpcResponseIq class represents an IQ used to carry an RPC response as specified by XEP-0009 ...
Definition QXmppRpcIq.h:26