Commands - annotate

- Migrated handleAnnotate to CmdAnnotate.
This commit is contained in:
Paul Beckingham
2011-05-30 00:24:48 -04:00
parent c8eb5df1b2
commit f775341fd5
9 changed files with 153 additions and 69 deletions

View File

@@ -29,6 +29,7 @@
#include <vector>
#include <Command.h>
#include <CmdAdd.h>
#include <CmdAnnotate.h>
#include <CmdAppend.h>
#include <CmdBurndown.h>
#include <CmdCommands.h>
@@ -63,6 +64,7 @@ void Command::factory (std::map <std::string, Command*>& all)
Command* c;
c = new CmdAdd (); all[c->keyword ()] = c;
c = new CmdAnnotate (); all[c->keyword ()] = c;
c = new CmdAppend (); all[c->keyword ()] = c;
c = new CmdBurndownDaily (); all[c->keyword ()] = c;
c = new CmdBurndownMonthly (); all[c->keyword ()] = c;