Commands - push

- Migrated handlePush to CmdPush.
This commit is contained in:
Paul Beckingham 2011-05-30 14:37:39 -04:00
parent 99fae1f9a8
commit af90a14cb5
9 changed files with 150 additions and 65 deletions

View file

@ -56,6 +56,7 @@
#include <CmdPrepend.h>
#include <CmdProjects.h>
#include <CmdPull.h>
#include <CmdPush.h>
#include <CmdQuery.h>
#include <CmdReports.h>
#include <CmdShell.h>
@ -116,6 +117,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdPrepend (); all[c->keyword ()] = c;
c = new CmdProjects (); all[c->keyword ()] = c;
c = new CmdPull (); all[c->keyword ()] = c;
c = new CmdPush (); 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;