| 68 | |
| 69 | |
| 70 | ArrowReader::ArrowReader() |
| 71 | : pdal::Reader() |
| 72 | , pdal::Streamable() |
| 73 | , m_file(nullptr) |
| 74 | , m_ipcReader(nullptr) |
| 75 | , m_parquetReader(nullptr) |
| 76 | , m_currentBatch(nullptr) |
| 77 | , m_formatType(arrowsupport::Unknown) |
| 78 | , m_pool(arrow::default_memory_pool()) |
| 79 | , m_batchCount(0) |
| 80 | , m_currentBatchIndex(0) |
| 81 | , m_currentBatchPointIndex(0) |
| 82 | , m_readMetadata(false) |
| 83 | |
| 84 | {} |
| 85 | |
| 86 | |
| 87 |
nothing calls this directly
no outgoing calls
no test coverage detected