mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Command - prepend
- Migrated handlePrepend to CmdPrepend.
This commit is contained in:
parent
920e1c6c86
commit
ef65617258
9 changed files with 177 additions and 92 deletions
|
@ -39,6 +39,7 @@
|
|||
#include <CmdInfo.h>
|
||||
#include <CmdInstall.h>
|
||||
#include <CmdLogo.h>
|
||||
#include <CmdPrepend.h>
|
||||
#include <CmdProjects.h>
|
||||
#include <CmdShell.h>
|
||||
#include <CmdShow.h>
|
||||
|
@ -70,6 +71,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||
c = new CmdPrepend (); all[c->keyword ()] = c;
|
||||
c = new CmdProjects (); all[c->keyword ()] = c;
|
||||
c = new CmdShell (); all[c->keyword ()] = c;
|
||||
c = new CmdShow (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue