$search
00001 // 00002 // stream_descriptor.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_STREAM_DESCRIPTOR_HPP 00012 #define ASIO_POSIX_STREAM_DESCRIPTOR_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/posix/basic_stream_descriptor.hpp" 00021 00022 #if defined(ASIO_HAS_POSIX_STREAM_DESCRIPTOR) \ 00023 || defined(GENERATING_DOCUMENTATION) 00024 00025 namespace asio { 00026 namespace posix { 00027 00029 typedef basic_stream_descriptor<> stream_descriptor; 00030 00031 } // namespace posix 00032 } // namespace asio 00033 00034 #endif // defined(ASIO_HAS_POSIX_STREAM_DESCRIPTOR) 00035 // || defined(GENERATING_DOCUMENTATION) 00036 00037 #include "asio/detail/pop_options.hpp" 00038 00039 #endif // ASIO_POSIX_STREAM_DESCRIPTOR_HPP