]> 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 8fe3b166a4149c0b758a4f62c569efbde64d6666..a4d33b10414a1c482d8b918fa9edd019a47dc611 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /TRACE
+ */
 class cmd_trace : public command_t
 {
  public:
         cmd_trace (InspIRCd* Instance) : command_t(Instance,"TRACE",'o',0) { syntax = "[<object>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif