| 286 | } |
| 287 | |
| 288 | void DecoderStack::set_rows_lshow(const decode::Row row, bool show) |
| 289 | { |
| 290 | std::map<const decode::Row, bool>::const_iterator iter = _rows_lshow.find(row); |
| 291 | if (iter != _rows_lshow.end()) { |
| 292 | _rows_lshow[row] = show; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | bool DecoderStack::has_annotations(const Row &row) |
| 297 | { |