Close the underlying stream. */
| 109 | Close the underlying stream. |
| 110 | */ |
| 111 | PDAL_EXPORT void close() |
| 112 | { |
| 113 | if(m_fstream != NULL) |
| 114 | FileUtils::closeFile(m_fstream); |
| 115 | m_fstream = NULL; |
| 116 | m_stream = NULL; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | Return the state of the stream. |
nothing calls this directly
no test coverage detected