]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_part.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_part.h
index 59af15a87688ab96af2a971cc7eec85c62b8313d..5f74b98555d9e776827349adcd6204c798c59805 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 /PART
+ */
 class cmd_part : public command_t
 {
  public:
         cmd_part (InspIRCd* Instance) : command_t(Instance,"PART",0,1) { syntax = "<channel>{,<channel>} [<reason>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif