| 126 | |
| 127 | |
| 128 | void Dumper::readPoints() |
| 129 | { |
| 130 | lazperf::reader::named_file f(m_filename); |
| 131 | |
| 132 | std::vector<char> buf(m_header.pointLen()); |
| 133 | for (uint64_t i = 0; i < m_header.pointCount(); ++i) |
| 134 | { |
| 135 | f.readPoint(buf.data()); |
| 136 | *m_out << i << " " << cksum(buf) << "\n"; |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | int Dumper::processArgs(std::deque<std::string> args) |
| 141 | { |
nothing calls this directly
no test coverage detected