std.hpp 772 B

12345678910111213141516171819202122232425
  1. /*!
  2. @file
  3. Includes all the adaptors for the standard library.
  4. @copyright Louis Dionne 2013-2017
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_EXT_STD_HPP
  9. #define BOOST_HANA_EXT_STD_HPP
  10. //! @ingroup group-ext
  11. //! @defgroup group-ext-std Standard library adapters
  12. //! Adapters for components in the standard library.
  13. #include <boost/hana/ext/std/array.hpp>
  14. #include <boost/hana/ext/std/integer_sequence.hpp>
  15. #include <boost/hana/ext/std/integral_constant.hpp>
  16. #include <boost/hana/ext/std/pair.hpp>
  17. #include <boost/hana/ext/std/ratio.hpp>
  18. #include <boost/hana/ext/std/tuple.hpp>
  19. #include <boost/hana/ext/std/vector.hpp>
  20. #endif // !BOOST_HANA_EXT_STD_HPP