Warning, file /include/boost/asio/serial_port.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_ASIO_SERIAL_PORT_HPP
0013 #define BOOST_ASIO_SERIAL_PORT_HPP
0014
0015 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
0016 # pragma once
0017 #endif
0018
0019 #include <boost/asio/detail/config.hpp>
0020
0021 #if defined(BOOST_ASIO_HAS_SERIAL_PORT) \
0022 || defined(GENERATING_DOCUMENTATION)
0023
0024 #include <boost/asio/basic_serial_port.hpp>
0025
0026 namespace boost {
0027 namespace asio {
0028
0029
0030 typedef basic_serial_port<> serial_port;
0031
0032 }
0033 }
0034
0035 #endif
0036
0037
0038 #endif