ReCodEx - Task Broker
ReCodEx is complex programmer testing solution, primary targeted to technical universities. It's highly customizable and based on modern technologies.
main.cpp
1
#include "broker_core.h"
2
#include <iostream>
3
#include <string>
4
#include <vector>
5
6
7
int
main(
int
argc,
char
**argv)
8
{
9
std::vector<std::string> args(argv, argv + argc);
10
try
{
11
broker_core
core(args);
12
core.run();
13
}
catch
(...) {
14
std::cerr <<
"Something very bad happend!"
<< std::endl;
15
return
1;
16
}
17
18
return
0;
19
}
broker_core
Definition:
broker_core.h:32
src
main.cpp
Generated on Sat Nov 19 2016 15:15:48 for ReCodEx - Task Broker by
1.8.12