Commands - stats

- Migrated handleReportStats to CmdStatistics.
This commit is contained in:
Paul Beckingham 2011-05-28 15:11:32 -04:00
parent 33d13ddb1d
commit 56e4c8172b
9 changed files with 323 additions and 236 deletions

View file

@ -39,6 +39,7 @@
#include <CmdLogo.h>
#include <CmdShell.h>
#include <CmdShow.h>
#include <CmdStatistics.h>
#include <CmdTags.h>
#include <CmdTip.h>
#include <CmdUrgency.h>
@ -64,6 +65,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdShell (); all[c->keyword ()] = c;
c = new CmdShow (); all[c->keyword ()] = c;
c = new CmdStatistics (); all[c->keyword ()] = c;
c = new CmdTags (); all[c->keyword ()] = c;
c = new CmdTip (); all[c->keyword ()] = c;
c = new CmdUrgency (); all[c->keyword ()] = c;