diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-10 11:34:18 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-10 11:34:18 +0000 |
| commit | 95b10ce06499f3e952b370b41fef1730bddd27fd (patch) | |
| tree | 53878caf3d41940fe6ba870b140dd8c13537f184 /src/QXmppOutgoingClient.h | |
| parent | db766a6ae6801df2999bb6680f4aadbe4aae8403 (diff) | |
| download | qxmpp-95b10ce06499f3e952b370b41fef1730bddd27fd.tar.gz | |
improve QXmppOutgoingClient documentation and remove unnecessary addFeatures() method
Diffstat (limited to 'src/QXmppOutgoingClient.h')
| -rw-r--r-- | src/QXmppOutgoingClient.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/QXmppOutgoingClient.h b/src/QXmppOutgoingClient.h index 3d744854..4b39445b 100644 --- a/src/QXmppOutgoingClient.h +++ b/src/QXmppOutgoingClient.h @@ -63,21 +63,28 @@ public: QXmppConfiguration& configuration(); - void addFeatures(const QStringList &features); - signals: + /// This signal is emitted when an error is encountered. void error(QXmppClient::Error); /// This signal is emitted when an element is received. void elementReceived(const QDomElement &element, bool &handled); + + /// This signal is emitted when a presence is received. void presenceReceived(const QXmppPresence&); + + /// This signal is emitted when a message is received. void messageReceived(const QXmppMessage&); + + /// This signal is emitted when an IQ is received. void iqReceived(const QXmppIq&); + /// \cond // XEP-0009: Jabber-RPC void rpcCallInvoke(const QXmppRpcInvokeIq &invoke); void rpcCallResponse(const QXmppRpcResponseIq& result); void rpcCallError(const QXmppRpcErrorIq &err); + /// \endcond protected: /// \cond |
