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