aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppDiscoveryIq.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-02-15 15:49:19 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-02-15 15:49:19 +0000
commit507c886007aaada1044d5cea447d510f0cd97c6e (patch)
tree1d78016e07c9fb2db213b77f5f1f145dde126d94 /source/QXmppDiscoveryIq.h
parentd18646274885a4dcc376094e372f24b6922155b8 (diff)
downloadqxmpp-507c886007aaada1044d5cea447d510f0cd97c6e.tar.gz
revert changes to discovery query items
Diffstat (limited to 'source/QXmppDiscoveryIq.h')
-rw-r--r--source/QXmppDiscoveryIq.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/QXmppDiscoveryIq.h b/source/QXmppDiscoveryIq.h
index f4355670..a7e09c23 100644
--- a/source/QXmppDiscoveryIq.h
+++ b/source/QXmppDiscoveryIq.h
@@ -37,11 +37,19 @@ public:
ItemsQuery,
};
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const;
void parse( QDomElement &element );
static bool isDiscoveryIq( QDomElement &element );
+ QList<QXmppElement> getQueryItems() const;
+ void setQueryItems(const QList<QXmppElement> &items);
+
enum QueryType getQueryType() const;
void setQueryType(enum QueryType type);
+
+private:
+ QList<QXmppElement> m_queryItems;
+ enum QueryType m_queryType;
};
#endif