gremlin/src/server.cpp

23 lines
431 B
C++

#include "Application.h"
#include <iostream>
int main(int argc, char ** argv) {
try {
Application app;
app.setMaster();
app.initialize(argc, argv);
while (app.isRunning())
app.update();
app.shutdown();
return 0;
} catch (const char *str) {
std::cerr << "Exception: " << str << std::endl;
return 1;
} catch (const std::exception &e) {
std::cerr << "Exception: " << e.what() << std::endl;
return 1;
}
}