std.hpp 868 B

123456789101112131415161718192021222324252627282930
  1. /*!
  2. @file
  3. Includes all the adaptors for the standard library.
  4. @copyright Louis Dionne 2013-2016
  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/config.hpp>
  14. #ifndef BOOST_HANA_CONFIG_HAS_NO_STD_TUPLE_ADAPTER
  15. # include <boost/hana/ext/std/tuple.hpp>
  16. #endif
  17. #include <boost/hana/ext/std/array.hpp>
  18. #include <boost/hana/ext/std/integer_sequence.hpp>
  19. #include <boost/hana/ext/std/integral_constant.hpp>
  20. #include <boost/hana/ext/std/pair.hpp>
  21. #include <boost/hana/ext/std/ratio.hpp>
  22. #include <boost/hana/ext/std/vector.hpp>
  23. #endif // !BOOST_HANA_EXT_STD_HPP