| 23 | } |
| 24 | |
| 25 | void |
| 26 | Decoder_NO ::get_description(cli::Argument_map_info& args) const |
| 27 | { |
| 28 | Decoder::get_description(args); |
| 29 | |
| 30 | auto p = this->get_prefix(); |
| 31 | |
| 32 | cli::add_options(args.at({ p + "-type", "D" }), 0, "NONE"); |
| 33 | cli::add_options(args.at({ p + "-implem" }), 0, "HARD_DECISION"); |
| 34 | } |
| 35 | |
| 36 | void |
| 37 | Decoder_NO ::store(const cli::Argument_map_value& vals) |
nothing calls this directly
no test coverage detected