Commands - _urgency

- Migrated _urgency to CmdUrgency.
This commit is contained in:
Paul Beckingham 2011-05-28 14:07:21 -04:00
parent 9af1c71daf
commit bd93126f4e
8 changed files with 124 additions and 39 deletions

View file

@ -39,6 +39,7 @@
#include <CmdShow.h>
#include <CmdTags.h>
#include <CmdTip.h>
#include <CmdUrgency.h>
#include <CmdVersion.h>
#include <Context.h>
@ -60,6 +61,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdShow (); 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;
c = new CmdVersion (); all[c->keyword ()] = c;
// Instantiate a command object for each custom report.