| 699 | void parse(argument_parser& ap) { l.parse(ap); } |
| 700 | |
| 701 | void run() |
| 702 | { |
| 703 | auto p = l.load(); |
| 704 | for(auto&& param : p.get_parameter_shapes()) |
| 705 | std::cout << param.first << ": " << param.second << std::endl; |
| 706 | } |
| 707 | }; |
| 708 | |
| 709 | struct verify : command<verify> |
nothing calls this directly
no test coverage detected