| 268 | } |
| 269 | |
| 270 | std::map<const decode::Row, bool> DecoderStack::get_rows_lshow() |
| 271 | { |
| 272 | std::map<const decode::Row, bool> rows_lshow; |
| 273 | for (std::map<const decode::Row, bool>::const_iterator i = _rows_lshow.begin(); |
| 274 | i != _rows_lshow.end(); i++) { |
| 275 | rows_lshow[(*i).first] = (*i).second; |
| 276 | } |
| 277 | return rows_lshow; |
| 278 | } |
| 279 | |
| 280 | void DecoderStack::set_rows_gshow(const decode::Row row, bool show) |
| 281 | { |
no test coverage detected