CLI/Context

- Reordering init sequence.
- Removed ::assumeLocations.
This commit is contained in:
Paul Beckingham 2014-11-09 08:29:54 -05:00
parent 8ff32b767f
commit 3b1f244f42
6 changed files with 182 additions and 139 deletions

View file

@ -65,6 +65,9 @@ class CLI
{
public:
static int minimumMatchLength;
static void getOverride (int, const char**, std::string&, File&);
static void getDataLocation (int, const char**, Path&);
static void applyOverrides (int, const char**);
public:
CLI ();
@ -75,8 +78,6 @@ public:
void add (const std::string&);
void analyze (bool parse = true, bool strict = false);
void applyOverrides ();
void getOverride (std::string&, File&);
void getDataLocation (Path&);
const std::string getFilter ();
const std::vector <std::string> getWords ();
bool canonicalize (std::string&, const std::string&, const std::string&) const;