QXmpp Version: 0.9.3
Loading...
Searching...
No Matches
QXmppServerPlugin.h
1/*
2 * Copyright (C) 2008-2014 The QXmpp developers
3 *
4 * Author:
5 * Jeremy Lainé
6 *
7 * Source:
8 * https://github.com/qxmpp-project/qxmpp
9 *
10 * This file is a part of QXmpp library.
11 *
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
16 *
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
21 *
22 */
23
24#ifndef QXMPPSERVERPLUGIN_H
25#define QXMPPSERVERPLUGIN_H
26
27#include <QtPlugin>
28
29#include "QXmppGlobal.h"
30
31class QXmppServer;
33
34class QXMPP_EXPORT QXmppServerPluginInterface
35{
36public:
38 virtual QXmppServerExtension *create(const QString &key) = 0;
39
41 virtual QStringList keys() const = 0;
42};
43
44Q_DECLARE_INTERFACE(QXmppServerPluginInterface, "com.googlecode.qxmpp.ServerPlugin/1.0")
45
46
48
49class QXMPP_EXPORT QXmppServerPlugin : public QObject, public QXmppServerPluginInterface
50{
51 Q_OBJECT
52 Q_INTERFACES(QXmppServerPluginInterface)
53
54public:
58 virtual QXmppServerExtension *create(const QString &key) = 0;
59
62 virtual QStringList keys() const = 0;
63};
64
65#endif
The QXmppServerExtension class is the base class for QXmppServer extensions.
Definition: QXmppServerExtension.h:49
The QXmppServerPlugin class is the base class for QXmppServer plugins.
Definition: QXmppServerPlugin.h:50
virtual QStringList keys() const =0
virtual QXmppServerExtension * create(const QString &key)=0
The QXmppServer class represents an XMPP server.
Definition: QXmppServer.h:60