| 3431 | }; |
| 3432 | |
| 3433 | class FileStream : public IStream { |
| 3434 | mutable std::ofstream m_ofs; |
| 3435 | public: |
| 3436 | FileStream( std::string const& filename ); |
| 3437 | virtual ~FileStream() CATCH_NOEXCEPT; |
| 3438 | public: // IStream |
| 3439 | virtual std::ostream& stream() const CATCH_OVERRIDE; |
| 3440 | }; |
| 3441 | |
| 3442 | class CoutStream : public IStream { |
| 3443 | mutable std::ostream m_os; |
nothing calls this directly
no outgoing calls
no test coverage detected