| 566 | |
| 567 | #ifdef LASZIPDLL_EXPORTS |
| 568 | BOOL LASindex::seek_next(LASreadPoint* reader, I64 &p_count) |
| 569 | { |
| 570 | if (!have_interval) |
| 571 | { |
| 572 | if (!has_intervals()) return FALSE; |
| 573 | reader->seek((U32)p_count, start); |
| 574 | p_count = start; |
| 575 | } |
| 576 | if (p_count == end) |
| 577 | { |
| 578 | have_interval = FALSE; |
| 579 | } |
| 580 | return TRUE; |
| 581 | } |
| 582 | #else |
| 583 | BOOL LASindex::seek_next(LASreader* lasreader) |
| 584 | { |
no test coverage detected