| 476 | } |
| 477 | StringFormatter() {} |
| 478 | void add_option(string spec, string help, string (*callback)(T)) |
| 479 | { |
| 480 | opt_list.push_back(std::make_tuple(spec, help, callback)); |
| 481 | } |
| 482 | T_optlist *get_options() { return &opt_list; } |
| 483 | void clear_options() |
| 484 | { |
no outgoing calls
no test coverage detected