| 111 | |
| 112 | |
| 113 | void PtsReader::ready(PointTableRef table) |
| 114 | { |
| 115 | m_istream = Utils::openFile(m_filename); |
| 116 | if (!m_istream) |
| 117 | throwError("Unable to open file '" + m_filename + "'."); |
| 118 | |
| 119 | // Skip header line. |
| 120 | std::string buf; |
| 121 | std::getline(*m_istream, buf); |
| 122 | } |
| 123 | |
| 124 | |
| 125 | point_count_t PtsReader::read(PointViewPtr view, point_count_t numPts) |
nothing calls this directly
no test coverage detected