QXmpp  Version:1.0.0
QXmppClientExtension.h
1 /*
2  * Copyright (C) 2008-2019 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 QXMPPCLIENTEXTENSION_H
25 #define QXMPPCLIENTEXTENSION_H
26 
27 #include "QXmppDiscoveryIq.h"
28 #include "QXmppLogger.h"
29 
30 class QDomElement;
31 class QStringList;
32 
33 class QXmppClient;
34 class QXmppClientExtensionPrivate;
35 class QXmppStream;
36 
46 
47 class QXMPP_EXPORT QXmppClientExtension : public QXmppLoggable
48 {
49  Q_OBJECT
50 
51 public:
53  virtual ~QXmppClientExtension();
54 
55  virtual QStringList discoveryFeatures() const;
56  virtual QList<QXmppDiscoveryIq::Identity> discoveryIdentities() const;
57 
64  virtual bool handleStanza(const QDomElement &stanza) = 0;
65 
66 protected:
67  QXmppClient *client();
68  virtual void setClient(QXmppClient *client);
69 
70 private:
71  QXmppClientExtensionPrivate * const d;
72 
73  friend class QXmppClient;
74 };
75 
76 #endif
QXmppClientExtension
The QXmppClientExtension class is the base class for QXmppClient extensions.
Definition: QXmppClientExtension.h:47
QXmppStream
The QXmppStream class is the base class for all XMPP streams.
Definition: QXmppStream.h:41
QXmppClient
The QXmppClient class is the main class for using QXmpp.
Definition: QXmppClient.h:80
QXmppLoggable
The QXmppLoggable class represents a source of logging messages.
Definition: QXmppLogger.h:111