QXmpp  Version:0.4.91
 All Classes Functions Enumerations Enumerator Properties Groups
QXmppServerPlugin.h
1 /*
2  * Copyright (C) 2008-2011 The QXmpp developers
3  *
4  * Author:
5  * Jeremy LainĂ©
6  *
7  * Source:
8  * http://code.google.com/p/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:
37  virtual QXmppServerExtension *create(const QString &key) = 0;
38  virtual QStringList keys() const = 0;
39 };
40 
41 Q_DECLARE_INTERFACE(QXmppServerPluginInterface, "com.googlecode.qxmpp.ServerPlugin/1.0")
42 
43 
44 
45 
46 class QXMPP_EXPORT QXmppServerPlugin : public QObject, public QXmppServerPluginInterface
47 {
48  Q_OBJECT
49  Q_INTERFACES(QXmppServerPluginInterface)
50 
51 public:
55  virtual QXmppServerExtension *create(const QString &key) = 0;
56 
59  virtual QStringList keys() const = 0;
60 };
61 
62 #endif