| 278 | } |
| 279 | |
| 280 | void DecoderStack::set_rows_gshow(const decode::Row row, bool show) |
| 281 | { |
| 282 | std::map<const decode::Row, bool>::const_iterator iter = _rows_gshow.find(row); |
| 283 | if (iter != _rows_gshow.end()) { |
| 284 | _rows_gshow[row] = show; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | void DecoderStack::set_rows_lshow(const decode::Row row, bool show) |
| 289 | { |
no test coverage detected