Command - pull

- Migrated handlePull to CmdPull.
This commit is contained in:
Paul Beckingham 2011-05-30 14:30:14 -04:00
parent abd51e81a3
commit 99fae1f9a8
9 changed files with 164 additions and 77 deletions

View file

@ -55,6 +55,7 @@
#include <CmdLogo.h>
#include <CmdPrepend.h>
#include <CmdProjects.h>
#include <CmdPull.h>
#include <CmdQuery.h>
#include <CmdReports.h>
#include <CmdShell.h>
@ -114,6 +115,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdPrepend (); all[c->keyword ()] = c;
c = new CmdProjects (); all[c->keyword ()] = c;
c = new CmdPull (); all[c->keyword ()] = c;
c = new CmdQuery (); all[c->keyword ()] = c;
c = new CmdReports (); all[c->keyword ()] = c;
c = new CmdShell (); all[c->keyword ()] = c;