mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Commands - timesheet
- Migrated handleReportTimesheet to CmdTimesheet.
This commit is contained in:
parent
2fb743992f
commit
75a24f5113
9 changed files with 230 additions and 146 deletions
|
@ -62,6 +62,7 @@
|
|||
#include <CmdStop.h>
|
||||
#include <CmdSummary.h>
|
||||
#include <CmdTags.h>
|
||||
#include <CmdTimesheet.h>
|
||||
#include <CmdTip.h>
|
||||
#include <CmdUndo.h>
|
||||
#include <CmdUrgency.h>
|
||||
|
@ -118,6 +119,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdStop (); all[c->keyword ()] = c;
|
||||
c = new CmdSummary (); all[c->keyword ()] = c;
|
||||
c = new CmdTags (); all[c->keyword ()] = c;
|
||||
c = new CmdTimesheet (); all[c->keyword ()] = c;
|
||||
c = new CmdTip (); all[c->keyword ()] = c;
|
||||
c = new CmdUndo (); all[c->keyword ()] = c;
|
||||
c = new CmdUrgency (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue