mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Commands - delete
- Migrated handleDelete to CmdDelete.
This commit is contained in:
parent
908fbd8ca4
commit
abd51e81a3
9 changed files with 236 additions and 150 deletions
|
@ -38,6 +38,7 @@
|
|||
#include <CmdConfig.h>
|
||||
#include <CmdCount.h>
|
||||
#include <CmdCustom.h>
|
||||
#include <CmdDelete.h>
|
||||
#include <CmdDenotate.h>
|
||||
#include <CmdDiagnostics.h>
|
||||
#include <CmdDone.h>
|
||||
|
@ -93,6 +94,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdConfig (); all[c->keyword ()] = c;
|
||||
c = new CmdCount (); all[c->keyword ()] = c;
|
||||
c = new CmdDelete (); all[c->keyword ()] = c;
|
||||
c = new CmdDenotate (); all[c->keyword ()] = c;
|
||||
c = new CmdDiagnostics (); all[c->keyword ()] = c;
|
||||
c = new CmdDone (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue