aboutsummaryrefslogtreecommitdiff
path: root/src/QXmppOutgoingServer.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-08-23 07:40:00 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-08-23 07:40:00 +0000
commitccb60b7970adeb4d11a02d41cecb607e331ef52e (patch)
tree27058767c743d3db99dd5dac9361b43b7ad887c9 /src/QXmppOutgoingServer.h
parent06c91617c29369ca7dfb0156748b2173f55561ae (diff)
downloadqxmpp-ccb60b7970adeb4d11a02d41cecb607e331ef52e.tar.gz
add code documentation to stream classes
Diffstat (limited to 'src/QXmppOutgoingServer.h')
-rw-r--r--src/QXmppOutgoingServer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/QXmppOutgoingServer.h b/src/QXmppOutgoingServer.h
index 5d3e67d4..2a2e2b8b 100644
--- a/src/QXmppOutgoingServer.h
+++ b/src/QXmppOutgoingServer.h
@@ -30,7 +30,7 @@ class QXmppDialback;
class QXmppOutgoingServer;
class QXmppOutgoingServerPrivate;
-/// The QXmppOutgoingServer class represents an outgoing XMPP stream
+/// \brief The QXmppOutgoingServer class represents an outgoing XMPP stream
/// to another XMPP server.
///
@@ -49,11 +49,14 @@ public:
void setVerify(const QString &id, const QString &key);
signals:
+ /// This signal is emitted when a dialback verify response is received.
void dialbackResponseReceived(const QXmppDialback &response);
protected:
+ /// \cond
void handleStart();
void handleStanza(const QDomElement &stanzaElement);
+ /// \endcond
private:
Q_DISABLE_COPY(QXmppOutgoingServer)