summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 16:44:44 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 16:44:44 +0000
commita79130a1e1c6fc44051acee01f77891c453e436f (patch)
tree81d83f5025828e42d04d20a66af7cf576f622556 /include
parentd7f97fcb2b8380330aa6fafbf61fc6c9d1b0d4c4 (diff)
Added irc::string
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1394 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/hashcomp.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h
index e75e84ef4..a4f341f24 100644
--- a/include/hashcomp.h
+++ b/include/hashcomp.h
@@ -53,7 +53,6 @@ namespace nspace
};
}
-
struct StrHashComp
{
@@ -65,6 +64,17 @@ struct InAddr_HashComp
bool operator()(const in_addr &s1, const in_addr &s2) const;
};
+namespace irc
+{
+ struct irc_char_traits : std::char_traits<char> {
+ static bool eq(char c1st, char c2nd);
+ static bool ne(char c1st, char c2nd);
+ static bool lt(char c1st, char c2nd);
+ static int compare(const char* str1, const char* str2, size_t n);
+ static const char* find(const char* s1, int n, char c);
+ };
+ typedef basic_string<char, irc_char_traits, allocator<char> > string;
+}
#endif