| 3 | #include <iostream> |
| 4 | |
| 5 | struct CommandLineArguments { |
| 6 | std::string onnxModelPath = ""; |
| 7 | std::string trtModelPath = ""; |
| 8 | }; |
| 9 | |
| 10 | inline void showHelp(char *argv[]) { |
| 11 | std::cout << "Usage: " << argv[0] << " [OPTIONS]" << std::endl << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected