| 118 | std::ostream m_os; |
| 119 | public: |
| 120 | DebugOutStream() |
| 121 | : m_streamBuf( Detail::make_unique<StreamBufImpl<OutputDebugWriter>>() ), |
| 122 | m_os( m_streamBuf.get() ) |
| 123 | {} |
| 124 | |
| 125 | public: // IStream |
| 126 | std::ostream& stream() override { return m_os; } |