- Stubbed ::getWords and ::getModifications.
This commit is contained in:
Paul Beckingham 2014-10-14 23:22:25 -04:00
parent 54d975dac3
commit 51a98609d9
2 changed files with 16 additions and 0 deletions

View file

@ -271,6 +271,20 @@ const std::string CLI::getFilter () const
return filter;
}
////////////////////////////////////////////////////////////////////////////////
const std::vector <std::string> CLI::getWords () const
{
std::vector <std::string> words;
return words;
}
////////////////////////////////////////////////////////////////////////////////
const std::vector <std::string> CLI::getModifications () const
{
std::vector <std::string> modifications;
return modifications;
}
////////////////////////////////////////////////////////////////////////////////
void CLI::dump (const std::string& label) const
{

View file

@ -44,6 +44,8 @@ public:
bool exactMatch (const std::string&, const std::string&) const;
bool canonicalize (std::string&, const std::string&, const std::string&) const;
const std::string getFilter () const;
const std::vector <std::string> getWords () const;
const std::vector <std::string> getModifications () const;
private:
void extractOverrides ();