| 501 | |
| 502 | #ifdef LASZIPDLL_EXPORTS |
| 503 | BOOL COPCindex::seek_next(LASreadPoint* reader, I64 &p_count) |
| 504 | { |
| 505 | if (!have_interval) |
| 506 | { |
| 507 | if (!has_intervals()) return FALSE; |
| 508 | reader->seek((U32)p_count, start); |
| 509 | p_count = start; |
| 510 | } |
| 511 | if (p_count == (I64)end) |
| 512 | { |
| 513 | have_interval = FALSE; |
| 514 | } |
| 515 | return TRUE; |
| 516 | } |
| 517 | #else |
| 518 | BOOL COPCindex::seek_next(LASreader* reader) |
| 519 | { |
no test coverage detected