mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Command - append
- Migrated handleAppend to CmdAppend.
This commit is contained in:
parent
ef65617258
commit
b9246e04b2
9 changed files with 177 additions and 92 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <Command.h>
|
||||
#include <CmdAppend.h>
|
||||
#include <CmdCommands.h>
|
||||
#include <CmdCount.h>
|
||||
#include <CmdCustom.h>
|
||||
|
@ -57,6 +58,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
{
|
||||
Command* c;
|
||||
|
||||
c = new CmdAppend (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionCommands (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionIds (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionProjects (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue