~ai.tron/armagetronad/0.4-winlibs-updated

« back to all changes in this revision

Viewing changes to boost/includes/boost/log/detail/asio_fwd.hpp

  • Committer: Nik K.
  • Date: 2013-11-07 16:58:35 UTC
  • Revision ID: nik.karbaum@gmail.com-20131107165835-kq99jz23drfj4dkh
Forgot to add some files; here they are

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *          Copyright Andrey Semashev 2007 - 2013.
 
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/libs/log/doc/log.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_LOG_HAS_PRAGMA_ONCE
 
26
#pragma once
 
27
#endif
 
28
 
 
29
namespace boost {
 
30
 
 
31
namespace asio {
 
32
 
 
33
namespace ip {
 
34
 
 
35
class address;
 
36
 
 
37
} // namespace ip
 
38
 
 
39
} // namespace asio
 
40
 
 
41
} // namespace boost
 
42
 
 
43
#endif // BOOST_LOG_DETAIL_ASIO_FWD_HPP_INCLUDED_