Mark current item as processed
| 265 | |
| 266 | // Mark current item as processed |
| 267 | void mark() |
| 268 | { |
| 269 | Marker::mark(m_curr); |
| 270 | |
| 271 | if (m_last == m_curr) |
| 272 | m_last--; |
| 273 | } |
| 274 | |
| 275 | // Move iterator position to the first not processed item |
| 276 | void rewind() |