]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modes/umode_o.h
Rename all these so that the names reflect the database server theyre used with more...
[user/henk/code/inspircd.git] / include / modes / umode_o.h
index fd389b4b098784b997a42b287b30779f11e785d5..7dfdb41280e2eff1217818ba301ba8d898bb141d 100644 (file)
@@ -1,8 +1,26 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  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.
+ *
+ * ---------------------------------------------------
+ */
+
 #include "mode.h"
 
+class InspIRCd;
+
+/** User mode +o
+ */
 class ModeUserOperator : public ModeHandler
 {
  public:
-       ModeUserOperator();
+       ModeUserOperator(InspIRCd* Instance);
        ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
+       unsigned int GetCount();
 };