]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Rewrote sepstream and tokenstream to be less ugly
[user/henk/code/inspircd.git] / include / command_parse.h
index f6ff588e1a82139742fd29997a99b8254e99a871..a49fc0b6e07410732368f3f732af23d3ead98ced 100644 (file)
@@ -20,8 +20,7 @@
  */
 
 
-#ifndef COMMAND_PARSE_H
-#define COMMAND_PARSE_H
+#pragma once
 
 /** A list of dll/so files containing the command handlers for the core
  */
@@ -50,7 +49,7 @@ class CoreExport CommandParser
         * @param user The user to parse the command for
         * @param cmd The command string to process
         */
-       bool ProcessCommand(LocalUser *user, std::string &cmd);
+       void ProcessCommand(LocalUser* user, std::string& cmd);
 
 
 
@@ -118,7 +117,7 @@ class CoreExport CommandParser
         * @param buffer The buffer line to process
         * @param user The user to whom this line belongs
         */
-       bool ProcessBuffer(std::string &buffer,LocalUser *user);
+       void ProcessBuffer(std::string &buffer,LocalUser *user);
 
        /** Add a new command to the commands hash
         * @param f The new Command to add to the list
@@ -175,5 +174,3 @@ const int duration_multi[] =
        1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
        1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
 };
-
-#endif