]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_trace.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_trace.h
index 44f308012d69032b890c52e629f5a64a793deae5..a4d33b10414a1c482d8b918fa9edd019a47dc611 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 /TRACE
+ */
 class cmd_trace : public command_t
 {
  public:
-        cmd_trace () : command_t("TRACE",'o',0) { syntax = "[<object>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_trace (InspIRCd* Instance) : command_t(Instance,"TRACE",'o',0) { syntax = "[<object>]"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif