mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Enhancement
- Began detailed implementation of commands and columns objects.
This commit is contained in:
parent
1c23b28514
commit
120562a7e9
9 changed files with 148 additions and 21 deletions
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <Command.h>
|
||||
#include <Install.h>
|
||||
#include <Context.h>
|
||||
|
||||
extern Context context;
|
||||
|
@ -34,11 +35,9 @@ extern Context context;
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
Command* Command::factory (const std::string& name)
|
||||
{
|
||||
/*
|
||||
if (name == "install") return new Install ();
|
||||
|
||||
throw std::string ("Unrecognized command '") + name + "'";
|
||||
*/
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue