Command - count

- Migrated handleCount to CmdCount.
This commit is contained in:
Paul Beckingham 2011-05-28 16:05:07 -04:00
parent 27d6e7cc81
commit a7bc09d487
9 changed files with 114 additions and 35 deletions

View file

@ -29,6 +29,7 @@
#include <vector>
#include <Command.h>
#include <CmdCommands.h>
#include <CmdCount.h>
#include <CmdCustom.h>
#include <CmdDiagnostics.h>
#include <CmdEdit.h>
@ -58,6 +59,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdCompletionIds (); all[c->keyword ()] = c;
c = new CmdCompletionTags (); all[c->keyword ()] = c;
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
c = new CmdCount (); 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;