]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_names.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_names.h
index fdcf2ea40c71b80ae0f244d8dbd4624e9d8c47ee..3c106a5a95ee60abd361cce4d4fa76759686c612 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 /NAMES
+ */
 class cmd_names : public command_t
 {
  public:
-        cmd_names () : command_t("NAMES",0,0) { syntax = "{<channel>{,<channel>}}"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_names (InspIRCd* Instance) : command_t(Instance,"NAMES",0,0) { syntax = "{<channel>{,<channel>}}"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif