overlapped_handle.cpp 673 B

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