Dispatch: All commands now return the exit status

This commit is contained in:
Paul Beckingham 2016-03-01 01:16:29 -05:00
parent 2fbe57fdd0
commit b0911ca240
13 changed files with 43 additions and 32 deletions

View file

@ -28,11 +28,12 @@
#include <iostream>
////////////////////////////////////////////////////////////////////////////////
void CmdDefault ()
int CmdDefault ()
{
// TODO Query database for currently active interval, obtain a summary and
// display the results.
std::cout << "# default\n";
return 0;
}
////////////////////////////////////////////////////////////////////////////////