mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Command - count
- Migrated handleCount to CmdCount.
This commit is contained in:
parent
27d6e7cc81
commit
a7bc09d487
9 changed files with 114 additions and 35 deletions
|
@ -29,6 +29,7 @@
|
|||
#include <vector>
|
||||
#include <Command.h>
|
||||
#include <CmdCommands.h>
|
||||
#include <CmdCount.h>
|
||||
#include <CmdCustom.h>
|
||||
#include <CmdDiagnostics.h>
|
||||
#include <CmdEdit.h>
|
||||
|
@ -58,6 +59,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdCompletionIds (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionTags (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdCount (); all[c->keyword ()] = c;
|
||||
c = new CmdDiagnostics (); all[c->keyword ()] = c;
|
||||
c = new CmdEdit (); all[c->keyword ()] = c;
|
||||
c = new CmdExec (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue