]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modes/cmode_p.h
Implement <options:prefixpart|suffixpart|fixedpart>
[user/henk/code/inspircd.git] / include / modes / cmode_p.h
index 87ffca4cbcb28f91276b5ecb143a90b5dc3f0b0d..d2a67f975ff42795fa0fa8da1e142350f4362a19 100644 (file)
@@ -1,8 +1,25 @@
+/*       +------------------------------------+
+ *       | 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;
+
+/** Channel mode +p
+ */
 class ModeChannelPrivate : public ModeHandler
 {
  public:
-       ModeChannelPrivate();
-       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
+       ModeChannelPrivate(InspIRCd* Instance);
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
 };