]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_unloadmodule.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_unloadmodule.h
index 1eef989b19c3ca446be3595d7d12e770aa730cda..c2d2d473d3b248ef9d1fd8082617f28e3345649a 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 /UNLOADMODULE
+ */
 class cmd_unloadmodule : public command_t
 {
  public:
-        cmd_unloadmodule () : command_t("UNLOADMODULE",'o',1) { }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_unloadmodule (InspIRCd* Instance) : command_t(Instance,"UNLOADMODULE",'o',1) { syntax = "<modulename>"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif