| 83 | } // namespace CDNSimulator |
| 84 | |
| 85 | int main(int argc, char *argv[]) { |
| 86 | try { |
| 87 | CDNSimulator::simulate(argc, argv); |
| 88 | } catch (std::exception &e) { |
| 89 | std::cerr << e.what() << std::endl; |
| 90 | print_stack_trace(); |
| 91 | } |
| 92 | |
| 93 | return 0; |
| 94 | } |
nothing calls this directly
no test coverage detected