diff options
Diffstat (limited to 'server-v1/source/main.cpp')
-rw-r--r-- | server-v1/source/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server-v1/source/main.cpp b/server-v1/source/main.cpp new file mode 100644 index 0000000..73e4006 --- /dev/null +++ b/server-v1/source/main.cpp @@ -0,0 +1,12 @@ +#include "EpistmoolServer/Server.hpp" + +#include <QCoreApplication> + +using namespace Epistmool::Server; + +int main(int argc, char* argv[]) +{ + QCoreApplication app(argc, argv); + Server server; + return app.exec(); +} |