| 596 | PointViewIter& operator++() |
| 597 | { m_id++; return *this; } |
| 598 | PointViewIter operator++(int) |
| 599 | { return PointViewIter(m_view, m_id++); } |
| 600 | PointViewIter& operator--() |
| 601 | { --m_id; return *this; } |
| 602 | PointViewIter operator--(int) |
nothing calls this directly
no test coverage detected