| 95 | |
| 96 | |
| 97 | void IcebridgeReader::ready(PointTableRef table) |
| 98 | { |
| 99 | try |
| 100 | { |
| 101 | m_hdf5Handler.initialize(m_filename, hdf5Columns); |
| 102 | } |
| 103 | catch (const Hdf5Handler::error& err) |
| 104 | { |
| 105 | throwError(err.what()); |
| 106 | } |
| 107 | m_index = 0; |
| 108 | if (!m_metadataFile.empty()) |
| 109 | { |
| 110 | m_mdReader.readMetadataFile(m_metadataFile, &m_metadata); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | |
| 115 | point_count_t IcebridgeReader::read(PointViewPtr view, point_count_t count) |
nothing calls this directly
no test coverage detected