]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/log/include/boost/log/detail/asio_fwd.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / log / include / boost / log / detail / asio_fwd.hpp
CommitLineData
7c673cae
FG
1/*
2 * Copyright Andrey Semashev 2007 - 2015.
3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7/*!
8 * \file asio_fwd.hpp
9 * \author Andrey Semashev
10 * \date 20.04.2008
11 *
12 * \brief This header is the Boost.Log library implementation, see the library documentation
13 * at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html.
14 *
15 * The header provides forward declarations of Boost.ASIO that are required for the user's
16 * code to compile with Boost.Log. The forward declarations allow to avoid including the major
17 * part of Boost.ASIO and system headers into user's code.
18 */
19
20#ifndef BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_
21#define BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_
22
23#include <boost/log/detail/config.hpp>
24
25#ifdef BOOST_HAS_PRAGMA_ONCE
26#pragma once
27#endif
28
29namespace boost {
30
31namespace asio {
32
33namespace ip {
34
35class address;
36
37} // namespace ip
38
39} // namespace asio
40
41} // namespace boost
42
43#endif // BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_