| 43 | #include <stdio.h> |
| 44 | |
| 45 | LASwritePoint::LASwritePoint() |
| 46 | { |
| 47 | outstream = 0; |
| 48 | num_writers = 0; |
| 49 | writers = 0; |
| 50 | writers_raw = 0; |
| 51 | writers_compressed = 0; |
| 52 | enc = 0; |
| 53 | layered_las14_compression = FALSE; |
| 54 | // used for chunking |
| 55 | chunk_size = U32_MAX; |
| 56 | chunk_count = 0; |
| 57 | number_chunks = 0; |
| 58 | alloced_chunks = 0; |
| 59 | chunk_sizes = 0; |
| 60 | chunk_bytes = 0; |
| 61 | chunk_table_start_position = 0; |
| 62 | chunk_start_position = 0; |
| 63 | } |
| 64 | |
| 65 | BOOL LASwritePoint::setup(const U32 num_items, const LASitem* items, const LASzip* laszip) |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected