Command - synchronize

- Added a placeholder synchronize command, which will be implemented
  in mumble for the mumble mumble.
This commit is contained in:
Paul Beckingham 2011-09-05 08:49:10 -04:00
parent 402ac5b418
commit 47b948c866
4 changed files with 99 additions and 0 deletions

View file

@ -79,6 +79,7 @@
#include <CmdStatistics.h>
#include <CmdStop.h>
#include <CmdSummary.h>
#include <CmdSynch.h>
#include <CmdTags.h>
#include <CmdTimesheet.h>
#include <CmdUndo.h>
@ -149,6 +150,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdStatistics (); all[c->keyword ()] = c;
c = new CmdStop (); all[c->keyword ()] = c;
c = new CmdSummary (); all[c->keyword ()] = c;
c = new CmdSynch (); all[c->keyword ()] = c;
c = new CmdTags (); all[c->keyword ()] = c;
c = new CmdTimesheet (); all[c->keyword ()] = c;
c = new CmdUndo (); all[c->keyword ()] = c;