Commands - info

- Migrated 'info' command to CmdInfo.
- Renamed 'info' command to 'information'.
This commit is contained in:
Paul Beckingham 2011-05-28 12:55:45 -04:00
parent 306f10b420
commit 0ce198ab8c
10 changed files with 451 additions and 363 deletions

View file

@ -31,6 +31,7 @@
#include <CmdCustom.h>
#include <CmdExec.h>
#include <CmdHelp.h>
#include <CmdInfo.h>
#include <CmdInstall.h>
#include <CmdLogo.h>
#include <CmdShow.h>
@ -49,6 +50,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdExec (); all[c->keyword ()] = c;
c = new CmdHelp (); all[c->keyword ()] = c;
c = new CmdInstall (); all[c->keyword ()] = c;
c = new CmdInfo (); all[c->keyword ()] = c;
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdShow (); all[c->keyword ()] = c;
c = new CmdTags (); all[c->keyword ()] = c;