Commands - start

- Migrated handleStart to CmdStart.
This commit is contained in:
Paul Beckingham 2011-05-30 01:11:34 -04:00
parent 0429949de5
commit 86ab605bd4
9 changed files with 156 additions and 73 deletions

View file

@ -51,6 +51,7 @@
#include <CmdProjects.h>
#include <CmdShell.h>
#include <CmdShow.h>
#include <CmdStart.h>
#include <CmdStatistics.h>
#include <CmdTags.h>
#include <CmdTip.h>
@ -96,6 +97,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdProjects (); all[c->keyword ()] = c;
c = new CmdShell (); all[c->keyword ()] = c;
c = new CmdShow (); all[c->keyword ()] = c;
c = new CmdStart (); 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;