]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Merge in patch by Darom that fixes race condition when unloading m_mysql.so that...
[user/henk/code/inspircd.git] / include / command_parse.h
index 93a36885ccd4a8fd241fd733cf1a5b0251d719b7..25d334dbffec543f1a92d792d548bf5ad6bf05c4 100644 (file)
 #ifndef __COMMAND_PARSE_H
 #define __COMMAND_PARSE_H
 
-#include <string>
-#include "ctables.h"
-#include "typedefs.h"
-
-/** Required forward declaration
- */
-class InspIRCd;
-
 /** A list of dll/so files containing the command handlers for the core
  */
 typedef std::map<std::string, void*> SharedObjectList;
@@ -225,7 +217,7 @@ class cmd_reload : public Command
  public:
        /** Standard constructor
         */
-       cmd_reload (InspIRCd* Instance) : Command(Instance,"RELOAD",'o',1) { syntax = "<core-command>"; }
+       cmd_reload (InspIRCd* Instance) : Command(Instance,"RELOAD","o",1) { syntax = "<core-command>"; }
        /** Handle RELOAD
         */
        CmdResult Handle(const char** parameters, int pcnt, User *user);