- Code cleanup, removed ::getModifications.
This commit is contained in:
Paul Beckingham 2014-11-08 15:21:07 -05:00
parent 1ff19c3b8f
commit ab17450820
2 changed files with 0 additions and 11 deletions

View file

@ -480,16 +480,6 @@ const std::vector <std::string> CLI::getWords ()
return words; return words;
} }
////////////////////////////////////////////////////////////////////////////////
const std::vector <std::string> CLI::getModifications ()
{
std::vector <std::string> modifications;
// TODO Processing here.
return modifications;
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Search for 'value' in _entities category, return canonicalized value. // Search for 'value' in _entities category, return canonicalized value.
bool CLI::canonicalize ( bool CLI::canonicalize (

View file

@ -79,7 +79,6 @@ public:
void getDataLocation (Path&); void getDataLocation (Path&);
const std::string getFilter (); const std::string getFilter ();
const std::vector <std::string> getWords (); const std::vector <std::string> getWords ();
const std::vector <std::string> getModifications ();
bool canonicalize (std::string&, const std::string&, const std::string&) const; bool canonicalize (std::string&, const std::string&, const std::string&) const;
std::string getBinary () const; std::string getBinary () const;
std::string getCommand () const; std::string getCommand () const;