| 142 | } |
| 143 | |
| 144 | virtual point_count_t read(PointViewPtr view, point_count_t numPts) |
| 145 | { |
| 146 | |
| 147 | PointId idx = view->size(); |
| 148 | point_count_t cnt = 0; |
| 149 | PointRef point(*view); |
| 150 | while (cnt < numPts) |
| 151 | { |
| 152 | point.setPointId(idx); |
| 153 | if (!processOne(point)) |
| 154 | break; |
| 155 | cnt++; |
| 156 | idx++; |
| 157 | } |
| 158 | return cnt; |
| 159 | } |
| 160 | |
| 161 | private: |
| 162 | bool m_entered; |
no test coverage detected