]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_info.cpp
Remove uneccessary socket includes now included in socket.h
[user/henk/code/inspircd.git] / src / cmd_info.cpp
index 692fa0e07703eb4e11bd1e0df87fc03c8252fc2a..1f3e3182f733bee8bb8fb2272cd7b452d2951efe 100644 (file)
  * ---------------------------------------------------
  */
 
-using namespace std;
-
-#include "inspircd_config.h"
-#include "inspircd.h"
-#include "inspircd_io.h"
-#include <string>
+#include "configreader.h"
 #include "users.h"
-#include "ctables.h"
-#include "globals.h"
 #include "modules.h"
-#include "dynamic.h"
-#include "message.h"
 #include "commands.h"
-#include "inspstring.h"
 #include "helperfuncs.h"
-#include "hashcomp.h"
-#include "typedefs.h"
 #include "cmd_info.h"
 
 extern ServerConfig* Config;
@@ -82,5 +70,3 @@ void cmd_info::Handle (char **parameters, int pcnt, userrec *user)
        FOREACH_MOD(I_OnInfo,OnInfo(user));
        WriteServ(user->fd, "374 %s :End of /INFO list", user->nick);
 }
-
-