| 201 | #pragma warning(pop) |
| 202 | |
| 203 | point_count_t XYZTimeFauxReader::read(PointViewPtr view, point_count_t count) |
| 204 | { |
| 205 | for (PointId idx = 0; idx < count; ++idx) |
| 206 | { |
| 207 | PointRef point = view->point(idx); |
| 208 | if (!processOne(point)) |
| 209 | break; |
| 210 | if (m_cb) |
| 211 | m_cb(*view, idx); |
| 212 | }; |
| 213 | return count; |
| 214 | } |
| 215 | |
| 216 | } // namespace pdal |
nothing calls this directly
no test coverage detected