Commands - log

- Migrated handleLog to CmdLog.
This commit is contained in:
Paul Beckingham 2011-05-29 21:43:37 -04:00
parent cb613c0691
commit c8eb5df1b2
9 changed files with 160 additions and 76 deletions

View file

@ -42,6 +42,7 @@
#include <CmdIDs.h>
#include <CmdInfo.h>
#include <CmdInstall.h>
#include <CmdLog.h>
#include <CmdLogo.h>
#include <CmdPrepend.h>
#include <CmdProjects.h>
@ -83,6 +84,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdIDs (); all[c->keyword ()] = c;
c = new CmdInfo (); all[c->keyword ()] = c;
c = new CmdInstall (); all[c->keyword ()] = c;
c = new CmdLog (); 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;