CmdMove: Impplemented 'move' command

This commit is contained in:
Paul Beckingham 2016-06-08 07:30:47 -04:00
parent 441af1a4d0
commit 72ffeaef20
4 changed files with 98 additions and 0 deletions

View file

@ -68,6 +68,7 @@ void initializeEntities (CLI& cli)
cli.entity ("command", "help");
cli.entity ("command", "import");
cli.entity ("command", "lengthen");
cli.entity ("command", "move");
cli.entity ("command", "report");
cli.entity ("command", "shorten");
cli.entity ("command", "show");
@ -264,6 +265,7 @@ int dispatchCommand (
else if (command == "import") status = CmdImport ( );
else if (command == "lengthen") status = CmdLengthen (cli, rules, database );
else if (command == "month") status = CmdChartMonth (cli, rules, database );
else if (command == "move") status = CmdMove (cli, rules, database );
else if (command == "report") status = CmdReport (cli, rules, database, extensions);
else if (command == "shorten") status = CmdShorten (cli, rules, database );
else if (command == "show") status = CmdShow ( rules );