diff options
| author | Edwin Mons <edwin.mons@isode.com> | 2014-05-09 14:25:29 (GMT) |
|---|---|---|
| committer | Edwin Mons <edwin.mons@isode.com> | 2014-05-12 08:49:36 (GMT) |
| commit | 634555e64572531fece2a955d1168a88c7979d09 (patch) | |
| tree | 4a7d50488d4adf60b24091e6308e7d4c30b350e7 /Swiften/Elements | |
| parent | afa4aa4a38991fc219d71604baab4d64a2082629 (diff) | |
| download | swift-contrib-634555e64572531fece2a955d1168a88c7979d09.zip swift-contrib-634555e64572531fece2a955d1168a88c7979d09.tar.bz2 | |
Add support for <before/> to ResultSet
Change-Id: I46bd9f24fc887b180cee3c2aa75a6c9e1761473b
Diffstat (limited to 'Swiften/Elements')
| -rw-r--r-- | Swiften/Elements/ResultSet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Swiften/Elements/ResultSet.h b/Swiften/Elements/ResultSet.h index 871b699..e84be35 100644 --- a/Swiften/Elements/ResultSet.h +++ b/Swiften/Elements/ResultSet.h @@ -1,44 +1,48 @@ /* * Copyright (c) 2014 Kevin Smith and Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include <boost/optional.hpp> #include <Swiften/Base/API.h> #include <Swiften/Elements/Payload.h> namespace Swift { class SWIFTEN_API ResultSet : public Payload { public: virtual ~ResultSet(); void setMaxItems(const boost::optional<int>& maxItems) { maxItems_ = maxItems; } const boost::optional<int>& getMaxItems() const { return maxItems_; } void setCount(const boost::optional<int>& count) { count_ = count; } const boost::optional<int>& getCount() const { return count_; } void setFirstIDIndex(const boost::optional<int>& firstIndex) { firstIndex_ = firstIndex; } const boost::optional<int>& getFirstIDIndex() const { return firstIndex_; } void setFirstID(const boost::optional<std::string>& firstID) { firstID_ = firstID; } const boost::optional<std::string>& getFirstID() const { return firstID_; } void setLastID(const boost::optional<std::string>& lastID) { lastID_ = lastID; } const boost::optional<std::string>& getLastID() const { return lastID_; } + void setBefore(const boost::optional<std::string>& before) { before_ = before; } + const boost::optional<std::string>& getBefore() const { return before_; } + void setAfter(const boost::optional<std::string>& after) { after_ = after; } const boost::optional<std::string>& getAfter() const { return after_; } private: boost::optional<int> maxItems_; boost::optional<int> count_; boost::optional<int> firstIndex_; boost::optional<std::string> firstID_; boost::optional<std::string> lastID_; + boost::optional<std::string> before_; boost::optional<std::string> after_; }; } |
Swift