diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-16 09:11:19 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-16 09:11:19 +0000 |
| commit | 82709f63191cf8da26dc0fd9be51b8fe68d6f6f0 (patch) | |
| tree | 01c6234eb70db77c94e4ba264b3a4eef7331b9c7 /source | |
| parent | 946249abbdd477ac7cfbdb1e0bfbcd34b7c93bb8 (diff) | |
| download | qxmpp-82709f63191cf8da26dc0fd9be51b8fe68d6f6f0.tar.gz | |
add some code documentation
Diffstat (limited to 'source')
| -rw-r--r-- | source/QXmppJingleIq.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/QXmppJingleIq.h b/source/QXmppJingleIq.h index 566d5b75..a6e49e40 100644 --- a/source/QXmppJingleIq.h +++ b/source/QXmppJingleIq.h @@ -113,6 +113,10 @@ private: QString m_type; }; +/// The QXmppJingleIq represent an IQ used for initiating media sessions +/// as specified by XEP-0166: Jingle. +/// + class QXmppJingleIq : public QXmppIq { public: @@ -134,6 +138,9 @@ public: TransportReplace, }; + /// The QXmppJingleIq::Content class represents the "content" element of a + /// QXmppJingleIq. + class Content { public: @@ -183,6 +190,9 @@ public: QList<QXmppJingleCandidate> m_transportCandidates; }; + /// The QXmppJingleIq::Reason class represents the "reason" element of a + /// QXmppJingleIq. + class Reason { public: |
