Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:20

0001 /*
0002  *          Copyright Andrey Semashev 2007 - 2015.
0003  * Distributed under the Boost Software License, Version 1.0.
0004  *    (See accompanying file LICENSE_1_0.txt or copy at
0005  *          http://www.boost.org/LICENSE_1_0.txt)
0006  */
0007 /*!
0008  * \file   asio_fwd.hpp
0009  * \author Andrey Semashev
0010  * \date   20.04.2008
0011  *
0012  * \brief  This header is the Boost.Log library implementation, see the library documentation
0013  *         at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html.
0014  *
0015  * The header provides forward declarations of Boost.ASIO that are required for the user's
0016  * code to compile with Boost.Log. The forward declarations allow to avoid including the major
0017  * part of Boost.ASIO and system headers into user's code.
0018  */
0019 
0020 #ifndef BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_
0021 #define BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_
0022 
0023 #include <boost/log/detail/config.hpp>
0024 
0025 #ifdef BOOST_HAS_PRAGMA_ONCE
0026 #pragma once
0027 #endif
0028 
0029 namespace boost {
0030 
0031 namespace asio {
0032 
0033 namespace ip {
0034 
0035 class address;
0036 
0037 } // namespace ip
0038 
0039 } // namespace asio
0040 
0041 } // namespace boost
0042 
0043 #endif // BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_