]> 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 9c8d9ceede43980e2d1fd6a335bdae2f0146ff6b..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) { }
-        void Handle(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