QXmpp  Version:0.9.1
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 
31 class QXmppServer;
33 
34 class QXMPP_EXPORT QXmppServerPluginInterface
35 {
36 public:
38  virtual QXmppServerExtension *create(const QString &key) = 0;
39 
41  virtual QStringList keys() const = 0;
42 };
43 
44 Q_DECLARE_INTERFACE(QXmppServerPluginInterface, "com.googlecode.qxmpp.ServerPlugin/1.0")
45 
46 
49 class QXMPP_EXPORT QXmppServerPlugin : public QObject, public QXmppServerPluginInterface
50 {
51  Q_OBJECT
52  Q_INTERFACES(QXmppServerPluginInterface)
53 
54 public:
58  virtual QXmppServerExtension *create(const QString &key) = 0;
59 
62  virtual QStringList keys() const = 0;
63 };
64 
65 #endif
The QXmppServerPlugin class is the base class for QXmppServer plugins.
Definition: QXmppServerPlugin.h:49
The QXmppServer class represents an XMPP server.
Definition: QXmppServer.h:59
The QXmppServerExtension class is the base class for QXmppServer extensions.
Definition: QXmppServerExtension.h:48