]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_trace.h
Remove a ton of <typeinfo>, <iostream>, <sstream> etc that we usually never use
[user/henk/code/inspircd.git] / include / commands / cmd_trace.h
index 50669498adbbca6e21deb0fb8c7db460407ff920..8fe3b166a4149c0b758a4f62c569efbde64d6666 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"
 
 class cmd_trace : public command_t
 {
  public:
-        cmd_trace () : command_t("TRACE",'o',0) { }
+        cmd_trace (InspIRCd* Instance) : command_t(Instance,"TRACE",'o',0) { syntax = "[<object>]"; }
         void Handle(const char** parameters, int pcnt, userrec *user);
 };