]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modes/umode_w.cpp
Hide channel mode structures
[user/henk/code/inspircd.git] / src / modes / umode_w.cpp
index 21c0076558dda12c01d8c94cf2cc54d2cd707184..13656ec2d0d699f4660467fd86f7ed19ef8c08dd 100644 (file)
@@ -1 +1,27 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "mode.h"\r#include "channels.h"\r#include "users.h"\r#include "modes/umode_w.h"\r\rModeUserWallops::ModeUserWallops(InspIRCd* Instance) : ModeHandler(Instance, 'w', 0, 0, false, MODETYPE_USER, false)\r{\r}\r\rModeAction ModeUserWallops::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)\r{\r  /* Only opers can change other users modes */\r  if ((source != dest) && (!*source->oper))\r              return MODEACTION_DENY;\r\r       /* Set the bitfields */\r        if (dest->modes[UM_WALLOPS] != adding)\r {\r              dest->modes[UM_WALLOPS] = adding;\r              this->count += (adding ? 1: -1);\r               return MODEACTION_ALLOW;\r       }\r\r     /* Allow the change */\r return MODEACTION_DENY;\r}\r\runsigned int ModeUserWallops::GetCount()\r{\r  return count;\r}\r\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+#include "mode.h"
+#include "channels.h"
+#include "users.h"
+#include "modes/umode_w.h"
+
+ModeUserWallops::ModeUserWallops() : SimpleUserModeHandler(NULL, "wallops", 'w')
+{
+}
+
+unsigned int ModeUserWallops::GetCount()
+{
+       return count;
+}