Commands - timesheet

- Migrated handleReportTimesheet to CmdTimesheet.
This commit is contained in:
Paul Beckingham 2011-05-30 13:46:08 -04:00
parent 2fb743992f
commit 75a24f5113
9 changed files with 230 additions and 146 deletions

View file

@ -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;