summaryrefslogtreecommitdiff
path: root/include/command_parse.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 10:38:28 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 10:38:28 +0000
commitec126582ac8a9c63adb9fa9d47033ef0511ec4e3 (patch)
tree68a235eba6ae3933983be0db101a382d425d26ef /include/command_parse.h
parentbbf2543844cf3963a7919062798ce36d5866ecc2 (diff)
Moved more command parsing stuff to CommandParser
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2514 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/command_parse.h')
-rw-r--r--include/command_parse.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h
index 80d39af64..b199123ee 100644
--- a/include/command_parse.h
+++ b/include/command_parse.h
@@ -21,16 +21,25 @@
#include <iostream>
#include <string>
#include "users.h"
+#include "ctables.h"
+#include "typedefs.h"
class CommandParser
{
+ private:
+ int CommandParser::ProcessParameters(char **command_p,char *parameters);
+ void CommandParser::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);
void ProcessBuffer(const char* cmdbuf,userrec *user);
bool RemoveCommands(const char* source);
- void CommandParser::ProcessCommand(userrec *user, char* cmd);
+ bool CreateCommand(char* cmd, handlerfunc f, char flags, int minparams,char* source);
};
#endif