Command - prepend

- Migrated handlePrepend to CmdPrepend.
This commit is contained in:
Paul Beckingham 2011-05-28 16:40:39 -04:00
parent 920e1c6c86
commit ef65617258
9 changed files with 177 additions and 92 deletions

View file

@ -39,6 +39,7 @@
#include <CmdInfo.h>
#include <CmdInstall.h>
#include <CmdLogo.h>
#include <CmdPrepend.h>
#include <CmdProjects.h>
#include <CmdShell.h>
#include <CmdShow.h>
@ -70,6 +71,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdInfo (); all[c->keyword ()] = c;
c = new CmdInstall (); all[c->keyword ()] = c;
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdPrepend (); all[c->keyword ()] = c;
c = new CmdProjects (); all[c->keyword ()] = c;
c = new CmdShell (); all[c->keyword ()] = c;
c = new CmdShow (); all[c->keyword ()] = c;