CLI
- Stubbed ::getWords and ::getModifications.
This commit is contained in:
14
src/CLI.cpp
14
src/CLI.cpp
@@ -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
|
||||
{
|
||||
|
||||
@@ -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 ();
|
||||
|
||||
Reference in New Issue
Block a user