Commands - delete

- Migrated handleDelete to CmdDelete.
This commit is contained in:
Paul Beckingham 2011-05-30 14:00:34 -04:00
parent 908fbd8ca4
commit abd51e81a3
9 changed files with 236 additions and 150 deletions

View file

@ -38,6 +38,7 @@
#include <CmdConfig.h>
#include <CmdCount.h>
#include <CmdCustom.h>
#include <CmdDelete.h>
#include <CmdDenotate.h>
#include <CmdDiagnostics.h>
#include <CmdDone.h>
@ -93,6 +94,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
c = new CmdConfig (); all[c->keyword ()] = c;
c = new CmdCount (); all[c->keyword ()] = c;
c = new CmdDelete (); all[c->keyword ()] = c;
c = new CmdDenotate (); all[c->keyword ()] = c;
c = new CmdDiagnostics (); all[c->keyword ()] = c;
c = new CmdDone (); all[c->keyword ()] = c;