]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/mode.h
Add third parameter to OnUserQuit (quit reason for opers only) - bump api version
[user/henk/code/inspircd.git] / include / mode.h
index 070b89a953f3a8a41b1f3e9dfeea1856b8d4e389..2875d853ea72af62c272c7602962b407e8b1d064 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>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -135,6 +132,10 @@ class ModeHandler : public Extensible
         */
        char prefix;
 
+       /** Number of items with this mode set on them
+        */
+       unsigned int count;
+
  public:
        /**
         * The constructor for ModeHandler initalizes the mode handler.
@@ -167,6 +168,12 @@ class ModeHandler : public Extensible
         * value for this mode prefix.
         */
        char GetPrefix();
+       /** Get number of items with this mode set on them
+        */
+       virtual unsigned int GetCount();
+       /** Adjust usage count returned by GetCount
+        */
+       virtual void ChangeCount(int modifier);
        /**
         * Get the 'value' of this modes prefix.
         * determines which to display when there are multiple.