summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-02 08:47:14 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-02 08:47:14 +0000
commit02fe4a30856a7bc931e680e8667ab9fa13149b15 (patch)
tree44416f1668b4276c3d62426b9f33a41cf5bb85ec /include
parent8b9664a6af2edaa3a51dacb9fb5cfca178241289 (diff)
modestacker class, stacks modes and returns a string list of up to MAXMODES modes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5389 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/hashcomp.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h
index 69fa677b8..dde123acb 100644
--- a/include/hashcomp.h
+++ b/include/hashcomp.h
@@ -123,6 +123,17 @@ namespace irc
bool operator()(const insp_inaddr &s1, const insp_inaddr &s2) const;
};
+ class modestacker
+ {
+ private:
+ std::deque<std::string> sequence;
+ bool adding;
+ public:
+ modestacker(bool add);
+ void Push(char modeletter, const std::string &parameter);
+ std::deque<std::string> GetStackedLine();
+ };
+
/** irc::tokenstream reads a string formatted as per RFC1459 and RFC2812.
* It will split the string into 'tokens' each containing one parameter
* from the string.