Imported Upstream version 1.49.0
[platform/upstream/boost.git] / boost / asio / detail / kqueue_reactor_fwd.hpp
1 //
2 // detail/kqueue_reactor_fwd.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2012 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 // Copyright (c) 2005 Stefan Arentz (stefan at soze dot com)
7 //
8 // Distributed under the Boost Software License, Version 1.0. (See accompanying
9 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 //
11
12 #ifndef BOOST_ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP
13 #define BOOST_ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP
14
15 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
16 # pragma once
17 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
18
19 #include <boost/asio/detail/config.hpp>
20
21 #if defined(BOOST_ASIO_HAS_KQUEUE)
22
23 namespace boost {
24 namespace asio {
25 namespace detail {
26
27 class kqueue_reactor;
28
29 } // namespace detail
30 } // namespace asio
31 } // namespace boost
32
33 #endif // defined(BOOST_ASIO_HAS_KQUEUE)
34
35 #endif // BOOST_ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP