]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/hashcomp.h
Made m_denychans support wildcards
[user/henk/code/inspircd.git] / include / hashcomp.h
index 6e171549d091d9bd45b6889d4674a7b1e8f90f76..2d6be15a9be097d09d40c2f0e362fde5bf3991fa 100644 (file)
@@ -2,12 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
  *
- * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -390,6 +387,7 @@ namespace irc
         * just required to make the pointer static and specific to this class
         * type.
         *
+        * \code
         * class mydbitmask : public irc::dynamicbitmask
         * {
         *  private:
@@ -419,6 +417,7 @@ namespace irc
         *          freebits = freebt;
         *      }
         * };
+        * \endcode
         */
        class dynamicbitmask : public classbase
        {
@@ -428,6 +427,7 @@ namespace irc
                 * more than 32 entries with Allocate().
                 */
                unsigned char* bits;
+        protected:
                /** Current set size (size of freebits and bits).
                 * Both freebits and bits will ALWAYS be the
                 * same length.
@@ -521,7 +521,7 @@ namespace irc
         */
        typedef basic_string<char, irc_char_traits, allocator<char> > string;
 
-       const char* Spacify(char* n);
+       const char* Spacify(const char* n);
 }
 
 /* Define operators for using >> and << with irc::string to an ostream on an istream. */
@@ -538,4 +538,17 @@ irc::string operator+ (irc::string& leftval, std::string& rightval);
 bool operator== (std::string& leftval, irc::string& rightval);
 bool operator== (irc::string& leftval, std::string& rightval);
 
+std::string assign(const irc::string &other);
+irc::string assign(const std::string &other);
+
+namespace nspace
+{
+       /** Hashing function to hash irc::string
+        */
+       template<> struct hash<irc::string>
+       {
+               size_t operator()(const irc::string &s) const;
+       };
+}
+
 #endif