diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-28 22:59:55 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-28 22:59:55 +0000 |
| commit | 13b245f3bcc709b2a974b764bb209e1ea87768af (patch) | |
| tree | b3bbde11e5fd231bf059f09f308dddf776426a47 /src/QXmppServerExtension.cpp | |
| parent | 8b58bfd72ad5d8e28e325c6cea61db270b9e626b (diff) | |
| download | qxmpp-13b245f3bcc709b2a974b764bb209e1ea87768af.tar.gz | |
update QXmppServer extensions API
Diffstat (limited to 'src/QXmppServerExtension.cpp')
| -rw-r--r-- | src/QXmppServerExtension.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/QXmppServerExtension.cpp b/src/QXmppServerExtension.cpp index e17304e9..9c5151a1 100644 --- a/src/QXmppServerExtension.cpp +++ b/src/QXmppServerExtension.cpp @@ -96,6 +96,22 @@ QStringList QXmppServerExtension::presenceSubscribers(const QString &jid) return QStringList(); } +/// Returns the extension's statistics. +/// + +QVariantMap QXmppServerExtension::statistics() const +{ + return QVariantMap(); +} + +/// Sets the extension's statistics. +/// + +void QXmppServerExtension::setStatistics(const QVariantMap &statistics) +{ + Q_UNUSED(statistics); +} + /// Starts the extension. /// /// Return true if the extension was started, false otherwise. |
