Command - append

- Migrated handleAppend to CmdAppend.
This commit is contained in:
Paul Beckingham 2011-05-28 16:41:21 -04:00
parent ef65617258
commit b9246e04b2
9 changed files with 177 additions and 92 deletions

View file

@ -28,6 +28,7 @@
#include <iostream>
#include <vector>
#include <Command.h>
#include <CmdAppend.h>
#include <CmdCommands.h>
#include <CmdCount.h>
#include <CmdCustom.h>
@ -57,6 +58,7 @@ void Command::factory (std::map <std::string, Command*>& all)
{
Command* c;
c = new CmdAppend (); all[c->keyword ()] = c;
c = new CmdCompletionCommands (); all[c->keyword ()] = c;
c = new CmdCompletionIds (); all[c->keyword ()] = c;
c = new CmdCompletionProjects (); all[c->keyword ()] = c;