]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_loadmodule.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_loadmodule.h
index d9ee5ad4b8b0aa01f15e71fd938a00e5e9b385b0..f26ffc113d82a183e6301636ebe4afefad56452f 100644 (file)
 
 // 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 () : command_t("LOADMODULE",'o',1) { }
-        void Handle(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