| 4643 | std::ostream m_os; |
| 4644 | public: |
| 4645 | DebugOutStream() |
| 4646 | : m_streamBuf( Detail::make_unique<StreamBufImpl<OutputDebugWriter>>() ), |
| 4647 | m_os( m_streamBuf.get() ) |
| 4648 | {} |
| 4649 | |
| 4650 | public: // IStream |
| 4651 | std::ostream& stream() override { return m_os; } |