]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Add configuration for building with Travis-CI.
[user/henk/code/inspircd.git] / include / command_parse.h
index f6ff588e1a82139742fd29997a99b8254e99a871..f9e3a740c3012bc3e955f2b6da841600707cdde7 100644 (file)
 #ifndef COMMAND_PARSE_H
 #define COMMAND_PARSE_H
 
-/** A list of dll/so files containing the command handlers for the core
- */
-typedef std::map<std::string, void*> SharedObjectList;
-
 /** This class handles command management and parsing.
  * It allows you to add and remove commands from the map,
  * call command handlers by name, and chop up comma seperated
@@ -35,10 +31,6 @@ typedef std::map<std::string, void*> SharedObjectList;
 class CoreExport CommandParser
 {
  private:
-       /** Parameter buffer
-        */
-       std::vector<std::string> para;
-
        /** Process a parameter string into a list of items
         * @param command_p The output list of items
         * @param parameters The input string
@@ -52,8 +44,6 @@ class CoreExport CommandParser
         */
        bool ProcessCommand(LocalUser *user, std::string &cmd);
 
-
-
  public:
        /** Command list, a hash_map of command names to Command*
         */