basic_serial_port.cpp 702 B

1234567891011121314151617181920212223242526
  1. //
  2. // basic_serial_port.cpp
  3. // ~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. // Copyright (c) 2008 Rep Invariant Systems, Inc. (info@repinvariant.com)
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  9. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. //
  11. // Disable autolinking for unit tests.
  12. #if !defined(BOOST_ALL_NO_LIB)
  13. #define BOOST_ALL_NO_LIB 1
  14. #endif // !defined(BOOST_ALL_NO_LIB)
  15. // Test that header file is self-contained.
  16. #include <boost/asio/basic_serial_port.hpp>
  17. #include "unit_test.hpp"
  18. BOOST_ASIO_TEST_SUITE
  19. (
  20. "basic_serial_port",
  21. BOOST_ASIO_TEST_CASE(null_test)
  22. )