mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Commands - denotate
- Migrated handleDenotate to CmdDenotate.
This commit is contained in:
parent
f775341fd5
commit
d021bb8188
9 changed files with 192 additions and 107 deletions
|
@ -35,6 +35,7 @@
|
|||
#include <CmdCommands.h>
|
||||
#include <CmdCount.h>
|
||||
#include <CmdCustom.h>
|
||||
#include <CmdDenotate.h>
|
||||
#include <CmdDiagnostics.h>
|
||||
#include <CmdEdit.h>
|
||||
#include <CmdExec.h>
|
||||
|
@ -75,6 +76,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdCompletionTags (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdCount (); all[c->keyword ()] = c;
|
||||
c = new CmdDenotate (); 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