| 252 | } |
| 253 | |
| 254 | void OGRWriter::writeView(const PointViewPtr view) |
| 255 | { |
| 256 | m_curCount = 0; |
| 257 | PointRef point(*view, 0); |
| 258 | for (PointId idx = 0; idx < view->size(); ++idx) |
| 259 | { |
| 260 | point.setPointId(idx); |
| 261 | processOne(point); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | |
| 266 | bool OGRWriter::processOne(PointRef& point) |
nothing calls this directly
no test coverage detected