select_interrupter.hpp
Go to the documentation of this file.
00001 //
00002 // select_interrupter.hpp
00003 // ~~~~~~~~~~~~~~~~~~~~~~
00004 //
00005 // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
00006 //
00007 // Distributed under the Boost Software License, Version 1.0. (See accompanying
00008 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
00009 //
00010 
00011 #ifndef ASIO_DETAIL_SELECT_INTERRUPTER_HPP
00012 #define ASIO_DETAIL_SELECT_INTERRUPTER_HPP
00013 
00014 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
00015 # pragma once
00016 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
00017 
00018 #include "asio/detail/push_options.hpp"
00019 
00020 #include "asio/detail/push_options.hpp"
00021 #include <boost/config.hpp>
00022 #include "asio/detail/pop_options.hpp"
00023 
00024 #include "asio/detail/pipe_select_interrupter.hpp"
00025 #include "asio/detail/socket_select_interrupter.hpp"
00026 
00027 namespace asio {
00028 namespace detail {
00029 
00030 #if defined(BOOST_WINDOWS) || defined(__CYGWIN__)
00031 typedef socket_select_interrupter select_interrupter;
00032 #else
00033 typedef pipe_select_interrupter select_interrupter;
00034 #endif
00035 
00036 } // namespace detail
00037 } // namespace asio
00038 
00039 #include "asio/detail/pop_options.hpp"
00040 
00041 #endif // ASIO_DETAIL_SELECT_INTERRUPTER_HPP
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines


Castor
Author(s): Carpe Noctem
autogenerated on Fri Nov 8 2013 11:05:39