mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI
- Stubbed ::getWords and ::getModifications.
This commit is contained in:
parent
54d975dac3
commit
51a98609d9
2 changed files with 16 additions and 0 deletions
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 ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue