kqueue_reactor_fwd.hpp 817 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // detail/kqueue_reactor_fwd.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2011 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. #ifndef ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP
  12. #define ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP
  13. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  14. # pragma once
  15. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  16. #include "asio/detail/config.hpp"
  17. #if defined(ASIO_HAS_KQUEUE)
  18. namespace asio {
  19. namespace detail {
  20. class kqueue_reactor;
  21. } // namespace detail
  22. } // namespace asio
  23. #endif // defined(ASIO_HAS_KQUEUE)
  24. #endif // ASIO_DETAIL_KQUEUE_REACTOR_FWD_HPP