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;
Main class for starting and managing connections to XMPP servers.
Definition: QXmppClient.h:62
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