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