]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_users.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_users.h
index d7ebcdec9ea8591d432922424aeca9a5e187b51f..2040913331aca2899c6a1be9129ed9bb6e662b60 100644 (file)
 #define __CMD_USERS_H__
 
 // include the common header files
-
-#include <typeinfo>
-#include <iostream>
+// 
 #include <string>
-#include <deque>
-#include <sstream>
 #include <vector>
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 
+/** Handle /USERS stub
+ */
 class cmd_users : public command_t
 {
  public:
-        cmd_users () : command_t("USERS",0,0) { }
-        void Handle(char **parameters, int pcnt, userrec *user);
+        cmd_users (InspIRCd* Instance) : command_t(Instance,"USERS",0,0) { }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif