| 442 | class COStream : public std::ostream { |
| 443 | public: |
| 444 | COStream(uno_logger_stream_callback logger_stream_callback, void* user_data, std::size_t buffer_size = 1024) : // 1024 default buffer size |
| 445 | std::ostream(&this->buffer), buffer(logger_stream_callback, user_data, buffer_size) { } |
| 446 | |
| 447 | private: |
| 448 | // internal stream buffer that sends output to the uno_logger_stream_callback |
nothing calls this directly
no outgoing calls
no test coverage detected