Commands - denotate

- Migrated handleDenotate to CmdDenotate.
This commit is contained in:
Paul Beckingham 2011-05-30 00:48:43 -04:00
parent f775341fd5
commit d021bb8188
9 changed files with 192 additions and 107 deletions

View file

@ -35,6 +35,7 @@
#include <CmdCommands.h>
#include <CmdCount.h>
#include <CmdCustom.h>
#include <CmdDenotate.h>
#include <CmdDiagnostics.h>
#include <CmdEdit.h>
#include <CmdExec.h>
@ -75,6 +76,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdCompletionTags (); all[c->keyword ()] = c;
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
c = new CmdCount (); all[c->keyword ()] = c;
c = new CmdDenotate (); all[c->keyword ()] = c;
c = new CmdDiagnostics (); all[c->keyword ()] = c;
c = new CmdEdit (); all[c->keyword ()] = c;
c = new CmdExec (); all[c->keyword ()] = c;