| 258 | } |
| 259 | |
| 260 | std::map<const decode::Row, bool> DecoderStack::get_rows_gshow() |
| 261 | { |
| 262 | std::map<const decode::Row, bool> rows_gshow; |
| 263 | for (std::map<const decode::Row, bool>::const_iterator i = _rows_gshow.begin(); |
| 264 | i != _rows_gshow.end(); i++) { |
| 265 | rows_gshow[(*i).first] = (*i).second; |
| 266 | } |
| 267 | return rows_gshow; |
| 268 | } |
| 269 | |
| 270 | std::map<const decode::Row, bool> DecoderStack::get_rows_lshow() |
| 271 | { |
no test coverage detected