diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-11 13:42:36 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-11 13:42:36 +0000 |
| commit | 70e4aa086ce5d30fc683fd862e5fc324ba738d32 (patch) | |
| tree | b3c8ad632bd3426b38f37a9353f529836b54b44b /source/QXmppDiscoveryIq.h | |
| parent | 024948b71f947c1b6c8b516b40dfdacdc647e2c9 (diff) | |
| download | qxmpp-70e4aa086ce5d30fc683fd862e5fc324ba738d32.tar.gz | |
add "node" property to QXmppDiscoveryIq
Diffstat (limited to 'source/QXmppDiscoveryIq.h')
| -rw-r--r-- | source/QXmppDiscoveryIq.h | 4 |
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; }; |
