mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-30 04:23:24 +02:00
CmdPurge: Add initial implementation
This commit is contained in:
parent
96d6fb145f
commit
1caa9daec0
5 changed files with 126 additions and 0 deletions
|
@ -70,6 +70,7 @@
|
|||
#include <CmdModify.h>
|
||||
#include <CmdPrepend.h>
|
||||
#include <CmdProjects.h>
|
||||
#include <CmdPurge.h>
|
||||
#include <CmdReports.h>
|
||||
#include <CmdShow.h>
|
||||
#include <CmdStart.h>
|
||||
|
@ -145,6 +146,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdModify (); all[c->keyword ()] = c;
|
||||
c = new CmdPrepend (); all[c->keyword ()] = c;
|
||||
c = new CmdProjects (); all[c->keyword ()] = c;
|
||||
c = new CmdPurge (); all[c->keyword ()] = c;
|
||||
c = new CmdReports (); all[c->keyword ()] = c;
|
||||
c = new CmdShow (); all[c->keyword ()] = c;
|
||||
c = new CmdShowRaw (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue