| 472 | |
| 473 | |
| 474 | void EsriReader::process(PointViewPtr dstView, const TileContents& tile, |
| 475 | point_count_t count) |
| 476 | { |
| 477 | m_pointId = 0; |
| 478 | PointRef dst(*dstView); |
| 479 | for (PointId idx = 0; idx < tile.size(); ++idx) |
| 480 | { |
| 481 | if (count-- == 0) |
| 482 | return; |
| 483 | dst.setPointId(dstView->size()); |
| 484 | processPoint(dst, tile); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | |
| 489 | bool EsriReader::processPoint(PointRef& dst, const TileContents& tile) |
nothing calls this directly
no test coverage detected