aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppDiscoveryIq.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-03-11 13:42:36 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-03-11 13:42:36 +0000
commit70e4aa086ce5d30fc683fd862e5fc324ba738d32 (patch)
treeb3c8ad632bd3426b38f37a9353f529836b54b44b /source/QXmppDiscoveryIq.h
parent024948b71f947c1b6c8b516b40dfdacdc647e2c9 (diff)
downloadqxmpp-70e4aa086ce5d30fc683fd862e5fc324ba738d32.tar.gz
add "node" property to QXmppDiscoveryIq
Diffstat (limited to 'source/QXmppDiscoveryIq.h')
-rw-r--r--source/QXmppDiscoveryIq.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/QXmppDiscoveryIq.h b/source/QXmppDiscoveryIq.h
index 76eabca1..cc4f556c 100644
--- a/source/QXmppDiscoveryIq.h
+++ b/source/QXmppDiscoveryIq.h
@@ -40,6 +40,9 @@ public:
QXmppElementList queryItems() const;
void setQueryItems(const QXmppElementList &items);
+ QString queryNode() const;
+ void setQueryNode(const QString &node);
+
enum QueryType queryType() const;
void setQueryType(enum QueryType type);
@@ -49,6 +52,7 @@ public:
private:
QXmppElementList m_queryItems;
+ QString m_queryNode;
enum QueryType m_queryType;
};