5#ifndef QXMPPREMOTEMETHOD_H 
    6#define QXMPPREMOTEMETHOD_H 
   15#if QXMPP_DEPRECATED_SINCE(1, 12) 
   17QT_WARNING_DISABLE_DEPRECATED
 
   20struct [[deprecated(
"Removed from public API (unmaintained)")]] QXmppRemoteMethodResult {
 
   21    QXmppRemoteMethodResult() : hasError(false), code(0) { }
 
   28class QXMPP_EXPORT Q_DECL_DEPRECATED_X(
"Removed from public API (unmaintained)") QXmppRemoteMethod : 
public QObject
 
   32    QXmppRemoteMethod(
const QString &jid, 
const QString &method, 
const QVariantList &args, 
QXmppClient *client);
 
   33    QXmppRemoteMethodResult call();
 
   36    void gotError(
const QXmppRpcErrorIq &iq);
 
   45    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