| 28 | } |
| 29 | |
| 30 | void |
| 31 | Encoder_conv ::get_description(cli::Argument_map_info& args) const |
| 32 | { |
| 33 | Encoder::get_description(args); |
| 34 | |
| 35 | auto p = this->get_prefix(); |
| 36 | const std::string class_name = "factory::Encoder_conv::"; |
| 37 | |
| 38 | args.erase({ p + "-cw-size", "N" }); |
| 39 | |
| 40 | cli::add_options(args.at({ p + "-type" }), 0, "CONV"); |
| 41 | |
| 42 | tools::add_arg(args, p, class_name + "p+poly", cli::Text()); |
| 43 | } |
| 44 | |
| 45 | void |
| 46 | Encoder_conv ::store(const cli::Argument_map_value& vals) |
nothing calls this directly
no test coverage detected