]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_mode.cpp
Merge pull request #35 from pcarrier/insp20ldap
[user/henk/code/inspircd.git] / src / commands / cmd_mode.cpp
index 267b783262bd0ef87bab058c1838732f8f87c77d..88c09c889e795210cbd25316b53beb42afb7052e 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  */
 
 #include "inspircd.h"
-#include "commands/cmd_mode.h"
 
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+/** Handle /MODE. These command handlers can be reloaded by the core,
+ * and handle basic RFC1459 commands. Commands within modules work
+ * the same way, however, they can be fully unloaded, where these
+ * may not.
+ */
+class CommandMode : public Command
 {
-       return new CommandMode(Instance);
-}
+ public:
+       /** Constructor for mode.
+        */
+       CommandMode ( Module* parent) : Command(parent,"MODE",1) { syntax = "<target> <modes> {<mode-parameters>}"; }
+       /** Handle command.
+        * @param parameters The parameters to the comamnd
+        * @param pcnt The number of parameters passed to teh command
+        * @param user The user issuing the command
+        * @return A value from CmdResult to indicate command success or failure.
+        */
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
+};
+
 
 /** Handle /MODE
  */
@@ -27,3 +42,5 @@ CmdResult CommandMode::Handle (const std::vector<std::string>& parameters, User
        return CMD_SUCCESS;
 }
 
+
+COMMAND_INIT(CommandMode)