$search
00001 // 00002 // serial_port.hpp 00003 // ~~~~~~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com) 00006 // Copyright (c) 2008 Rep Invariant Systems, Inc. (info@repinvariant.com) 00007 // 00008 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00009 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00010 // 00011 00012 #ifndef ASIO_SERIAL_PORT_HPP 00013 #define ASIO_SERIAL_PORT_HPP 00014 00015 #if defined(_MSC_VER) && (_MSC_VER >= 1200) 00016 # pragma once 00017 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) 00018 00019 #include "asio/detail/push_options.hpp" 00020 00021 #include "asio/basic_serial_port.hpp" 00022 00023 #if defined(ASIO_HAS_SERIAL_PORT) \ 00024 || defined(GENERATING_DOCUMENTATION) 00025 00026 namespace asio { 00027 00029 typedef basic_serial_port<> serial_port; 00030 00031 } // namespace asio 00032 00033 #endif // defined(ASIO_HAS_SERIAL_PORT) 00034 // || defined(GENERATING_DOCUMENTATION) 00035 00036 #include "asio/detail/pop_options.hpp" 00037 00038 #endif // ASIO_SERIAL_PORT_HPP