]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_loadmodule.h
I think this fixes visual studio oddities
[user/henk/code/inspircd.git] / include / commands / cmd_loadmodule.h
index 4e86058ce8adec987b132a0f7639d3c52062a01f..bbdeebfeef4b9f4042c661817fd9053fc0a19f33 100644 (file)
@@ -2,14 +2,14 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
+ *  InspIRCd is copyright (C) 2002-2007 ChatSpike-Dev.
+ *                    E-mail:
+ *             <brain@chatspike.net>
+ *             <Craig@chatspike.net>
  *
  * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ *         the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
 #include "users.h"
 #include "channels.h"
 
+/** Handle /LOADMODULE
+ */
 class cmd_loadmodule : public command_t
 {
  public:
-        cmd_loadmodule (InspIRCd* Instance) : command_t(Instance,"LOADMODULE",'o',1) { syntax = "<modulename>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+       cmd_loadmodule (InspIRCd* Instance) : command_t(Instance,"LOADMODULE",'o',1) { syntax = "<modulename>"; }
+       CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif