| 62 | } |
| 63 | |
| 64 | void |
| 65 | Encoder_RA ::get_description(cli::Argument_map_info& args) const |
| 66 | { |
| 67 | Encoder::get_description(args); |
| 68 | |
| 69 | if (itl != nullptr) |
| 70 | { |
| 71 | itl->get_description(args); |
| 72 | |
| 73 | auto pi = itl->get_prefix(); |
| 74 | |
| 75 | args.erase({ pi + "-size" }); |
| 76 | } |
| 77 | |
| 78 | auto p = this->get_prefix(); |
| 79 | |
| 80 | cli::add_options(args.at({ p + "-type" }), 0, "RA"); |
| 81 | } |
| 82 | |
| 83 | void |
| 84 | Encoder_RA ::store(const cli::Argument_map_value& vals) |
nothing calls this directly
no test coverage detected