mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
parent
37b48c56d5
commit
73e9f52793
7 changed files with 166 additions and 0 deletions
|
@ -50,6 +50,7 @@
|
|||
#include <CmdLogo.h>
|
||||
#include <CmdPrepend.h>
|
||||
#include <CmdProjects.h>
|
||||
#include <CmdReports.h>
|
||||
#include <CmdShell.h>
|
||||
#include <CmdShow.h>
|
||||
#include <CmdStart.h>
|
||||
|
@ -99,6 +100,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||
c = new CmdPrepend (); all[c->keyword ()] = c;
|
||||
c = new CmdProjects (); all[c->keyword ()] = c;
|
||||
c = new CmdReports (); all[c->keyword ()] = c;
|
||||
c = new CmdShell (); all[c->keyword ()] = c;
|
||||
c = new CmdShow (); all[c->keyword ()] = c;
|
||||
c = new CmdStart (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue