| 310 | |
| 311 | |
| 312 | void TextWriter::write(const PointViewPtr view) |
| 313 | { |
| 314 | PointRef point(*view, 0); |
| 315 | |
| 316 | for (PointId idx = 0; idx < view->size(); ++idx) |
| 317 | { |
| 318 | point.setPointId(idx); |
| 319 | processOne(point); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | |
| 324 | void TextWriter::done(PointTableRef /*table*/) |
nothing calls this directly
no test coverage detected