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 }