| 3440 | }; |
| 3441 | |
| 3442 | class CoutStream : public IStream { |
| 3443 | mutable std::ostream m_os; |
| 3444 | public: |
| 3445 | CoutStream(); |
| 3446 | virtual ~CoutStream() CATCH_NOEXCEPT; |
| 3447 | |
| 3448 | public: // IStream |
| 3449 | virtual std::ostream& stream() const CATCH_OVERRIDE; |
| 3450 | }; |
| 3451 | |
| 3452 | class DebugOutStream : public IStream { |
| 3453 | std::auto_ptr<StreamBufBase> m_streamBuf; |
nothing calls this directly
no outgoing calls
no test coverage detected