Enhancements - delete, start

- Implemented delete command.
- Implemented start command.
This commit is contained in:
Paul Beckingham 2009-06-15 23:47:42 -04:00
parent 6e6f86783f
commit 1551362d1e
3 changed files with 83 additions and 52 deletions

View file

@ -186,9 +186,13 @@ std::string Context::dispatch ()
else if (cmd.command == "done") { out = handleDone (); }
/*
else if (cmd.command == "undo") { out = handleUndo (); }
*/
else if (cmd.command == "delete") { out = handleDelete (); }
/*
else if (cmd.command == "undelete") { out = handleUndelete (); }
*/
else if (cmd.command == "start") { out = handleStart (); }
/*
else if (cmd.command == "stop") { out = handleStop (); }
*/
else if (cmd.command == "export") { out = handleExport (); }