]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Decide that it wasn't quite appropriate :(
[user/henk/code/inspircd.git] / include / command_parse.h
index 80d39af64720a5a12b1cf5295a5faa755292e295..a58dfe5d108a38d2bc1e2b1474ceb13269644f98 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *                <Craig@chatspike.net>
 #include <iostream>
 #include <string>
 #include "users.h"
+#include "ctables.h"
+#include "typedefs.h"
  
 class CommandParser
 {
+ private:
+       int ProcessParameters(char **command_p,char *parameters);
+       void ProcessCommand(userrec *user, char* cmd);
+       void SetupCommandTable();
  public:
+       command_table cmdlist;
+
+       CommandParser();
        void CallHandler(std::string &commandname,char **parameters, int pcnt, userrec *user);
        bool IsValidCommand(std::string &commandname, int pcnt, userrec * user);
-       int LoopCall(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins);
+       int LoopCall(command_t *fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins);
        void ProcessBuffer(const char* cmdbuf,userrec *user);
        bool RemoveCommands(const char* source);
-       void CommandParser::ProcessCommand(userrec *user, char* cmd);
+       bool CreateCommand(command_t *f);
 };
 
 #endif