| 89 | PDAL_EXPORT void seek(std::streampos pos) |
| 90 | { m_stream->seekp(pos, std::ostream::beg); } |
| 91 | PDAL_EXPORT void put(const std::string& s) |
| 92 | { put(s, s.size()); } |
| 93 | PDAL_EXPORT void put(const std::string& s, size_t len) |
| 94 | { |
| 95 | std::string os = s; |
no test coverage detected