| 78 | public: |
| 79 | LASMessageStream(LAS_MESSAGE_TYPE type) : setType(type) {} |
| 80 | ~LASMessageStream() { if (setType != LAS_QUIET) LASMessage(setType, usedStream.str().c_str()); } |
| 81 | |
| 82 | template <typename T> |
| 83 | LASMessageStream& operator<<(const T& value) |
nothing calls this directly
no test coverage detected