]> 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 d5c7049db70eaa544e0eebf702c5b910ec96b7bd..25d334dbffec543f1a92d792d548bf5ad6bf05c4 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
 #ifndef __COMMAND_PARSE_H
 #define __COMMAND_PARSE_H
 
-#include <string>
-#include "users.h"
-#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;
@@ -226,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);