Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/log/detail/asio_fwd.hpp @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children | c530137014c0 |
comparison
equal
deleted
inserted
replaced
15:663ca0da4350 | 16:2665513ce2d3 |
---|---|
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/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 | |
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_ |