| 67 | } |
| 68 | |
| 69 | const geos::geom::Geometry* GeometryFlattener::RecursiveGeometryIterator::operator->() const |
| 70 | { |
| 71 | if (!m_exhausted) |
| 72 | { |
| 73 | if (m_iterator) |
| 74 | { |
| 75 | return m_iterator->operator->(); |
| 76 | } |
| 77 | return m_geometry.getGeometryN(m_index); |
| 78 | } |
| 79 | return &m_geometry; |
| 80 | } |
| 81 | |
| 82 | GeometryFlattener::RecursiveGeometryIterator& |
| 83 | GeometryFlattener::RecursiveGeometryIterator::operator++() |
nothing calls this directly
no outgoing calls
no test coverage detected