| 386 | } |
| 387 | |
| 388 | void LASreaderQFIT::close(BOOL close_stream) |
| 389 | { |
| 390 | if (close_stream) |
| 391 | { |
| 392 | if (stream) |
| 393 | { |
| 394 | delete stream; |
| 395 | stream = 0; |
| 396 | } |
| 397 | if (file) |
| 398 | { |
| 399 | fclose(file); |
| 400 | file = 0; |
| 401 | } |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | BOOL LASreaderQFIT::reopen(const char* file_name) |
| 406 | { |
nothing calls this directly
no outgoing calls
no test coverage detected