]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_restart.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_restart.h
index 6d7e82f230fb947a004663c41ced4c5d332035da..627e75c99a817ee7771efda4a59ba6ec0ab70f56 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 /RESTART
+ */
 class cmd_restart : public command_t
 {
  public:
         cmd_restart (InspIRCd* Instance) : command_t(Instance,"RESTART",'o',1) { syntax = "<password>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif