QXmpp
Version:0.9.3
|
00001 /* 00002 * Copyright (C) 2008-2014 The QXmpp developers 00003 * 00004 * Author: 00005 * Manjeet Dahiya 00006 * 00007 * Source: 00008 * https://github.com/qxmpp-project/qxmpp 00009 * 00010 * This file is a part of QXmpp library. 00011 * 00012 * This library is free software; you can redistribute it and/or 00013 * modify it under the terms of the GNU Lesser General Public 00014 * License as published by the Free Software Foundation; either 00015 * version 2.1 of the License, or (at your option) any later version. 00016 * 00017 * This library is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 * Lesser General Public License for more details. 00021 * 00022 */ 00023 00024 00025 #ifndef QXMPPIQ_H 00026 #define QXMPPIQ_H 00027 00028 #include "QXmppStanza.h" 00029 00030 // forward declarations of QXmlStream* classes will not work on Mac, we need to 00031 // include the whole header. 00032 // See http://lists.trolltech.com/qt-interest/2008-07/thread00798-0.html 00033 // for an explanation. 00034 #include <QXmlStreamWriter> 00035 00036 class QXmppIqPrivate; 00037 00041 00042 class QXMPP_EXPORT QXmppIq : public QXmppStanza 00043 { 00044 public: 00046 enum Type 00047 { 00048 Error = 0, 00049 Get, 00050 Set, 00051 Result 00052 }; 00053 00054 QXmppIq(QXmppIq::Type type = QXmppIq::Get); 00055 QXmppIq(const QXmppIq &other); 00056 ~QXmppIq(); 00057 00058 QXmppIq& operator=(const QXmppIq &other); 00059 00060 QXmppIq::Type type() const; 00061 void setType(QXmppIq::Type); 00062 00064 void parse(const QDomElement &element); 00065 void toXml(QXmlStreamWriter *writer) const; 00066 00067 protected: 00068 virtual void parseElementFromChild(const QDomElement &element); 00069 virtual void toXmlElementFromChild(QXmlStreamWriter *writer) const; 00071 00072 private: 00073 QSharedDataPointer<QXmppIqPrivate> d; 00074 }; 00075 00076 #endif // QXMPPIQ_H