diff options
| author | Tobias Markmann <tm@ayena.de> | 2016-03-31 14:57:35 (GMT) | 
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2016-03-31 14:57:35 (GMT) | 
| commit | cfbdb43d2cadd40aa87338d41548e4bf89e146e6 (patch) | |
| tree | 18d94153a302445196fc0c18586abf44a1ce4a38 /Swiften/Elements/ResultSet.h | |
| parent | 1d545a4a7fb877f021508094b88c1f17b30d8b4e (diff) | |
| download | swift-cfbdb43d2cadd40aa87338d41548e4bf89e146e6.zip swift-cfbdb43d2cadd40aa87338d41548e4bf89e146e6.tar.bz2 | |
Convert tabs to 4 spaces for all source files
Removed trailing spaces and whitespace on empty lines
in the process.
Changed CheckTabs.py tool to disallow hard tabs in source
files.
Test-Information:
Manually checked 30 random files that the conversion worked
as expected.
Change-Id: I874f99d617bd3d2bb55f02d58f22f58f9b094480
Diffstat (limited to 'Swiften/Elements/ResultSet.h')
| -rw-r--r-- | Swiften/Elements/ResultSet.h | 58 | 
1 files changed, 29 insertions, 29 deletions
| diff --git a/Swiften/Elements/ResultSet.h b/Swiften/Elements/ResultSet.h index dc3692f..44995d1 100644 --- a/Swiften/Elements/ResultSet.h +++ b/Swiften/Elements/ResultSet.h @@ -12,43 +12,43 @@  #include <Swiften/Elements/Payload.h>  namespace Swift { -	class SWIFTEN_API ResultSet : public Payload { -		public: -			virtual ~ResultSet(); +    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 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 setCount(const boost::optional<int>& count) { count_ = count; } +            const boost::optional<int>& getCount() const { return count_; } -			void setIndex(const boost::optional<int>& index) { index_ = index; } -			const boost::optional<int>& getIndex() const { return index_; } +            void setIndex(const boost::optional<int>& index) { index_ = index; } +            const boost::optional<int>& getIndex() const { return index_; } -			void setFirstIDIndex(const boost::optional<int>& firstIndex) { firstIndex_ = firstIndex; } -			const boost::optional<int>& getFirstIDIndex() const { return firstIndex_; } +            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 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 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 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_; } +            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> index_; -			boost::optional<int> firstIndex_; -			boost::optional<std::string> firstID_; -			boost::optional<std::string> lastID_; -			boost::optional<std::string> before_; -			boost::optional<std::string> after_; -	}; +        private: +            boost::optional<int> maxItems_; +            boost::optional<int> count_; +            boost::optional<int> index_; +            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
 Swift