00001 // 00002 // descriptor_base.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_POSIX_DESCRIPTOR_BASE_HPP 00012 #define ASIO_POSIX_DESCRIPTOR_BASE_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 <boost/detail/workaround.hpp> 00023 #include "asio/detail/pop_options.hpp" 00024 00025 #include "asio/detail/io_control.hpp" 00026 #include "asio/detail/socket_option.hpp" 00027 00028 namespace asio { 00029 namespace posix { 00030 00034 class descriptor_base 00035 { 00036 public: 00038 00052 #if defined(GENERATING_DOCUMENTATION) 00053 typedef implementation_defined non_blocking_io; 00054 #else 00055 typedef asio::detail::io_control::non_blocking_io non_blocking_io; 00056 #endif 00057 00060 00075 #if defined(GENERATING_DOCUMENTATION) 00076 typedef implementation_defined bytes_readable; 00077 #else 00078 typedef asio::detail::io_control::bytes_readable bytes_readable; 00079 #endif 00080 00081 protected: 00083 ~descriptor_base() 00084 { 00085 } 00086 }; 00087 00088 } // namespace posix 00089 } // namespace asio 00090 00091 #include "asio/detail/pop_options.hpp" 00092 00093 #endif // ASIO_POSIX_DESCRIPTOR_BASE_HPP