| 74 | { m_istream = FileUtils::openFile(filename); } |
| 75 | |
| 76 | virtual ~LasStreamIf() |
| 77 | { |
| 78 | if (m_istream) |
| 79 | FileUtils::closeFile(m_istream); |
| 80 | } |
| 81 | |
| 82 | operator std::istream& () |
| 83 | { return *m_istream; } |
nothing calls this directly
no test coverage detected