diff options
Diffstat (limited to 'source/QXmppRoster.h')
| -rw-r--r-- | source/QXmppRoster.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/source/QXmppRoster.h b/source/QXmppRoster.h index 778f7f5b..727eba85 100644 --- a/source/QXmppRoster.h +++ b/source/QXmppRoster.h @@ -21,9 +21,20 @@ * */ +#ifndef QXMPPROSTER_H +#define QXMPPROSTER_H + +#include <QObject> +#include <QMap> +#include <QSet> +#include <QStringList> -/// \class QXmppRoster -/// \brief Class for handling the roster of the connected client. +#include "QXmppClient.h" + +class QXmppRosterIq; +class QXmppPresence; + +/// \brief The QXmppRoster class provides access to a connected client's roster. /// /// \note It's object should not be created using it's constructor. Instead /// QXmppClient::getRoster() should be used to get the reference of instantiated @@ -46,19 +57,6 @@ /// or roster changes respectively. /// -#ifndef QXMPPROSTER_H -#define QXMPPROSTER_H - -#include <QObject> -#include <QMap> -#include <QSet> -#include <QStringList> - -#include "QXmppClient.h" - -class QXmppRosterIq; -class QXmppPresence; - class QXmppRoster : public QObject { Q_OBJECT |
