]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_pong.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_pong.h
index 9d2006e0f7439790f7e0a23d47eea8318f294e5a..4eecbfa2a13419c10cc38947f13d64b0b4b3f881 100644 (file)
 
 // 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 /PONG
+ */
 class cmd_pong : public command_t
 {
  public:
-        cmd_pong () : command_t("PONG",0,1) { syntax = "<ping-text>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_pong (InspIRCd* Instance) : command_t(Instance,"PONG",0,1) { syntax = "<ping-text>"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif