diff options
| -rw-r--r-- | Swiften/Elements/DiscoInfo.h | 3 | ||||
| -rw-r--r-- | Swiften/Elements/DiscoItems.h | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Swiften/Elements/DiscoInfo.h b/Swiften/Elements/DiscoInfo.h index 3173ee6..fec60d6 100644 --- a/Swiften/Elements/DiscoInfo.h +++ b/Swiften/Elements/DiscoInfo.h @@ -1,50 +1,53 @@ /* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include <vector> #include <string> #include <Swiften/Elements/Payload.h> #include <Swiften/Elements/Form.h> namespace Swift { + /** + * disco#info from XEP-0030 + */ class DiscoInfo : public Payload { public: typedef boost::shared_ptr<DiscoInfo> ref; static const std::string ChatStatesFeature; static const std::string SecurityLabelsFeature; static const std::string SecurityLabelsCatalogFeature; static const std::string JabberSearchFeature; static const std::string CommandsFeature; static const std::string MessageCorrectionFeature; static const std::string JingleFeature; static const std::string JingleFTFeature; static const std::string JingleTransportsIBBFeature; static const std::string JingleTransportsS5BFeature; static const std::string Bytestream; static const std::string MessageDeliveryReceiptsFeature; class Identity { public: Identity(const std::string& name, const std::string& category = "client", const std::string& type = "pc", const std::string& lang = "") : name_(name), category_(category), type_(type), lang_(lang) { } const std::string& getCategory() const { return category_; } const std::string& getType() const { return type_; } const std::string& getLanguage() const { return lang_; } const std::string& getName() const { diff --git a/Swiften/Elements/DiscoItems.h b/Swiften/Elements/DiscoItems.h index 149e41c..cbca399 100644 --- a/Swiften/Elements/DiscoItems.h +++ b/Swiften/Elements/DiscoItems.h @@ -1,52 +1,58 @@ /* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include <vector> #include <string> #include <Swiften/Elements/Payload.h> #include <Swiften/JID/JID.h> namespace Swift { + /** + * Service discovery disco#items from XEP-0030. + */ class DiscoItems : public Payload { public: + /** + * A single result item. + */ class Item { public: Item(const std::string& name, const JID& jid, const std::string& node="") : name_(name), jid_(jid), node_(node) { } const std::string& getName() const { return name_; } const std::string& getNode() const { return node_; } const JID& getJID() const { return jid_; } private: std::string name_; JID jid_; std::string node_; }; DiscoItems() { } const std::string& getNode() const { return node_; } void setNode(const std::string& node) { node_ = node; } const std::vector<Item>& getItems() const { |
Swift