diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-22 10:28:33 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-22 10:28:33 +0000 |
| commit | 348b173dd5cf746ce9f8939aeb7bd2cc3ebb766d (patch) | |
| tree | ac2d2dcd20dbbd020a719220ace4cb244dd469fc /source/QXmppSession.h | |
| parent | f05f29132920c00568b867456adc15fdde576fbf (diff) | |
| download | qxmpp-348b173dd5cf746ce9f8939aeb7bd2cc3ebb766d.tar.gz | |
make it possible to detect / parse bind and session IQs
Diffstat (limited to 'source/QXmppSession.h')
| -rw-r--r-- | source/QXmppSession.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source/QXmppSession.h b/source/QXmppSession.h index 95b1048c..c32202cf 100644 --- a/source/QXmppSession.h +++ b/source/QXmppSession.h @@ -1,8 +1,9 @@ /* - * Copyright (C) 2008-2009 Manjeet Dahiya + * Copyright (C) 2008-2010 Manjeet Dahiya * * Author: * Manjeet Dahiya + * Jeremy Lainé * * Source: * http://code.google.com/p/qxmpp @@ -32,11 +33,11 @@ class QXmppSession : public QXmppIq public: QXmppSession(QXmppIq::Type type); QXmppSession(const QString& type); - ~QXmppSession(); + + static bool isSession(const QDomElement &element); private: - void toXmlElementFromChild( QXmlStreamWriter *writer) const; - + void toXmlElementFromChild(QXmlStreamWriter *writer) const; }; #endif // QXMPPSESSION_H |
