diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-10 09:24:38 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-10 09:24:38 +0000 |
| commit | 31e094afb7e7975606bd3f9fcc6941fd7a33e411 (patch) | |
| tree | 7a877ddfcb5f9a6470f2df6fc1d5fb255671c503 /source | |
| parent | 5ee32c39d36c283a0e330005de922c486a6ae9e2 (diff) | |
| download | qxmpp-31e094afb7e7975606bd3f9fcc6941fd7a33e411.tar.gz | |
document the QXmppVersionIq class
Diffstat (limited to 'source')
| -rw-r--r-- | source/QXmppVersionIq.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source/QXmppVersionIq.cpp b/source/QXmppVersionIq.cpp index 16d9a957..f97beb2b 100644 --- a/source/QXmppVersionIq.cpp +++ b/source/QXmppVersionIq.cpp @@ -27,31 +27,52 @@ #include "QXmppUtils.h" #include "QXmppVersionIq.h" +/// Returns the name of the software. +/// + QString QXmppVersionIq::name() const { return m_name; } +/// Sets the name of the software. +/// +/// \param name + void QXmppVersionIq::setName(const QString &name) { m_name = name; } +/// Returns the operating system. +/// + QString QXmppVersionIq::os() const { return m_os; } +/// Sets the operating system. +/// +/// \param os + void QXmppVersionIq::setOs(const QString &os) { m_os = os; } +/// Returns the software version. +/// + QString QXmppVersionIq::version() const { return m_version; } +/// Sets the software version. +/// +/// \param version + void QXmppVersionIq::setVersion(const QString &version) { m_version = version; |
