summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-01-13 13:38:45 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-01-16 10:04:05 (GMT)
commite3e6e344dbb7df85e5f13eef944285ea2262e980 (patch)
treee429583136553390baa5e930a6764b64ec356132
parenta3f6e01f590eb66d3ffeb3d4b2af8ac7703c81cc (diff)
downloadswift-contrib-e3e6e344dbb7df85e5f13eef944285ea2262e980.zip
swift-contrib-e3e6e344dbb7df85e5f13eef944285ea2262e980.tar.bz2
Add minor doc
-rw-r--r--Swiften/Elements/DiscoInfo.h3
-rw-r--r--Swiften/Elements/DiscoItems.h6
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
@@ -7,18 +7,21 @@
#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;
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
@@ -7,20 +7,26 @@
#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_;
}