Chris@16: /* Chris@101: * Copyright Andrey Semashev 2007 - 2015. Chris@16: * Distributed under the Boost Software License, Version 1.0. Chris@16: * (See accompanying file LICENSE_1_0.txt or copy at Chris@16: * http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: /*! Chris@16: * \file formatting_ostream_fwd.hpp Chris@16: * \author Andrey Semashev Chris@16: * \date 11.07.2012 Chris@16: * Chris@16: * The header contains forward declaration of a string stream used for log record formatting. Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_LOG_UTILITY_FORMATTING_OSTREAM_FWD_HPP_INCLUDED_ Chris@16: #define BOOST_LOG_UTILITY_FORMATTING_OSTREAM_FWD_HPP_INCLUDED_ Chris@16: Chris@16: #include Chris@16: #include Chris@16: #include Chris@16: Chris@16: #ifdef BOOST_HAS_PRAGMA_ONCE Chris@16: #pragma once Chris@16: #endif Chris@16: Chris@16: namespace boost { Chris@16: Chris@16: BOOST_LOG_OPEN_NAMESPACE Chris@16: Chris@16: /*! Chris@16: * \brief Stream for log records formatting Chris@16: */ Chris@16: template< Chris@16: typename CharT, Chris@16: typename TraitsT = std::char_traits< CharT >, Chris@16: typename AllocatorT = std::allocator< CharT > Chris@16: > Chris@16: class basic_formatting_ostream; Chris@16: Chris@16: #ifdef BOOST_LOG_USE_CHAR Chris@16: typedef basic_formatting_ostream< char > formatting_ostream; Chris@16: #endif Chris@16: #ifdef BOOST_LOG_USE_WCHAR_T Chris@16: typedef basic_formatting_ostream< wchar_t > wformatting_ostream; Chris@16: #endif Chris@16: Chris@16: BOOST_LOG_CLOSE_NAMESPACE // namespace log Chris@16: Chris@16: } // namespace boost Chris@16: Chris@16: #endif // BOOST_LOG_UTILITY_FORMATTING_OSTREAM_FWD_HPP_INCLUDED_