]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
New mode stuff. Note, the framework is now here so that every mode handler can state...
[user/henk/code/inspircd.git] / include / command_parse.h
index c2fa781772237f5cc5a185dc447e98173dcaf631..25d334dbffec543f1a92d792d548bf5ad6bf05c4 100644 (file)
 #ifndef __COMMAND_PARSE_H
 #define __COMMAND_PARSE_H
 
-#include <string>
-#include "ctables.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;
@@ -224,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);