2016-03-11 15:13:04 +00:00
|
|
|
#include "console.h"
|
2016-03-11 14:49:24 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
// Load config files, if any.
|
|
|
|
|
|
|
|
// Run command loop
|
|
|
|
|
2016-03-11 15:13:04 +00:00
|
|
|
Console::loop();
|
2016-03-11 14:49:24 +00:00
|
|
|
|
|
|
|
// Perform any shutdown/cleanup.
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|