Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:02:50

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 
0009 #ifndef CATCH_STDSTREAMS_HPP_INCLUDED
0010 #define CATCH_STDSTREAMS_HPP_INCLUDED
0011 
0012 #include <iosfwd>
0013 
0014 namespace Catch {
0015 
0016     std::ostream& cout();
0017     std::ostream& cerr();
0018     std::ostream& clog();
0019 
0020 } // namespace Catch
0021 
0022 #endif