From 31e094afb7e7975606bd3f9fcc6941fd7a33e411 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Tue, 10 Aug 2010 09:24:38 +0000 Subject: document the QXmppVersionIq class --- source/QXmppVersionIq.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'source/QXmppVersionIq.cpp') 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; -- cgit v1.2.3