The QXmppClientExtension class is the base class for QXmppClient extensions.
More...
#include <QXmppClientExtension.h>
List of all members.
Friends |
class | QXmppClient |
Detailed Description
The QXmppClientExtension class is the base class for QXmppClient extensions.
If you want to extend QXmppClient, for instance to support an IQ type which is not natively supported, you can subclass QXmppClientExtension and implement handleStanza(). You can then add your extension to the client instance using QXmppClient::addExtension().
Constructor & Destructor Documentation
QXmppClientExtension::QXmppClientExtension |
( |
| ) |
|
QXmppClientExtension::~QXmppClientExtension |
( |
| ) |
|
|
virtual |
Member Function Documentation
Returns the client which loaded this extension.
QStringList QXmppClientExtension::discoveryFeatures |
( |
| ) |
const |
|
virtual |
Returns the discovery features to add to the client.
QList< QXmppDiscoveryIq::Identity > QXmppClientExtension::discoveryIdentities |
( |
| ) |
const |
|
virtual |
Returns the discovery identities to add to the client.
virtual bool QXmppClientExtension::handleStanza |
( |
const QDomElement & |
stanza | ) |
|
|
pure virtual |
You need to implement this method to process incoming XMPP stanzas.
You should return true if the stanza was handled and no further processing should occur, or false to let other extensions process the stanza.
void QXmppClientExtension::setClient |
( |
QXmppClient * |
client | ) |
|
|
protectedvirtual |
Sets the client which loaded this extension.
- Parameters:
-
The documentation for this class was generated from the following files: