| 699 | } |
| 700 | |
| 701 | int main(int argc, const char** argv) |
| 702 | { |
| 703 | auto result = initialize(argc, argv); |
| 704 | if (result != 0) |
| 705 | { |
| 706 | shutdown(); |
| 707 | return result; |
| 708 | } |
| 709 | |
| 710 | run(); |
| 711 | |
| 712 | shutdown(); |
| 713 | return 0; |
| 714 | } |
nothing calls this directly
no test coverage detected