diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-19 15:49:17 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-19 15:49:17 +0000 |
| commit | c984459de1b0712dd1869112f418762539e1d36f (patch) | |
| tree | 6b5aa816be585ac6486eeba20cabf586da3fc1ce /source/QXmppJingleIq.h | |
| parent | 9d32f3dabc8f5f96a9f89eb44b8c42956ac3aabf (diff) | |
| download | qxmpp-c984459de1b0712dd1869112f418762539e1d36f.tar.gz | |
improve code documentation
Diffstat (limited to 'source/QXmppJingleIq.h')
| -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 94639a9c..611ef3ed 100644 --- a/source/QXmppJingleIq.h +++ b/source/QXmppJingleIq.h @@ -28,6 +28,10 @@ #include "QXmppIq.h" +/// \brief The QXmppJinglePayloadType class represents a payload type +/// as specified by XEP-0167: Jingle RTP Sessions. +/// + class QXmppJinglePayloadType { public: @@ -65,6 +69,10 @@ private: unsigned int m_ptime; }; +/// \brief The QXmppJingleCandidate class represents a transport candidate +/// as specified by XEP-0176: Jingle ICE-UDP Transport Method. +/// + class QXmppJingleCandidate { public: @@ -267,8 +275,10 @@ public: static bool isJingleIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: Action m_action; |
