| 39 | } |
| 40 | |
| 41 | int main(int argc, char *argv[]) { |
| 42 | struct arguments args; |
| 43 | parse_cmd(argc, argv, &args); |
| 44 | |
| 45 | mrcProfiler::MRCProfilerBase * profiler = create_mrc_profiler(args.mrc_profiler_type, args.reader, args.ofilepath, args.mrc_profiler_params); |
| 46 | |
| 47 | profiler->run(); |
| 48 | |
| 49 | profiler->print(args.ofilepath); |
| 50 | |
| 51 | delete profiler; |
| 52 | |
| 53 | close_reader(args.reader); |
| 54 | |
| 55 | return 0; |
| 56 | } |
nothing calls this directly
no test coverage detected