diff options
Diffstat (limited to 'source/QXmppPacket.h')
| -rw-r--r-- | source/QXmppPacket.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source/QXmppPacket.h b/source/QXmppPacket.h index f1802c6a..fc565794 100644 --- a/source/QXmppPacket.h +++ b/source/QXmppPacket.h @@ -33,17 +33,16 @@ // for an explanation. #include <QXmlStreamWriter> +class QDomElement; + class QXmppPacket { public: QXmppPacket(); virtual ~QXmppPacket(); - QByteArray xmlReceived() const; + virtual void parse(const QDomElement &element) = 0; virtual void toXml( QXmlStreamWriter *writer ) const = 0; - -private: - QByteArray m_xmlReceived; }; #endif // QXMPPPACKET_H |
