- Prepared CmdCustom for new command line processing code.
This commit is contained in:
Paul Beckingham
2011-06-02 00:47:05 -04:00
parent a3912d9123
commit e19f087931
5 changed files with 60 additions and 20 deletions

View File

@@ -96,18 +96,18 @@ public:
Directory extension_dir;
Config config;
Filter filter;
Sequence sequence;
Subst subst;
Task task;
Filter filter; // TODO Obsolete
Sequence sequence; // TODO Obsolete
Subst subst; // TODO Obsolete
Task task; // TODO Obsolete
TDB tdb; // TODO Obsolete
TDB2 tdb2;
std::string commandLine;
std::string commandLine; // TODO Obsolete
std::string file_override;
std::string var_overrides;
std::map <std::string, std::string> aliases;
std::vector <std::string> tagAdditions;
std::vector <std::string> tagRemovals;
std::vector <std::string> tagAdditions; // TODO Obsolete
std::vector <std::string> tagRemovals; // TODO Obsolete
Hooks hooks;
DOM dom;
@@ -123,6 +123,7 @@ public:
bool inShadow;
std::map <std::string, Command*> commands;
std::string command;
int terminal_width;
int terminal_height;