tuple.hpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // (C) Copyright John Maddock 2005.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TR1_TUPLE_HPP_INCLUDED
  6. # define BOOST_TR1_TUPLE_HPP_INCLUDED
  7. # include <boost/tr1/detail/config.hpp>
  8. #ifdef BOOST_HAS_TR1_TUPLE
  9. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  10. # include_next BOOST_TR1_HEADER(tuple)
  11. # else
  12. # include <boost/tr1/detail/config_all.hpp>
  13. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(tuple))
  14. # endif
  15. #else
  16. #if defined(BOOST_TR1_USE_OLD_TUPLE)
  17. #include <boost/tuple/tuple.hpp>
  18. #include <boost/tuple/tuple_comparison.hpp>
  19. #include <boost/type_traits/integral_constant.hpp>
  20. namespace std{ namespace tr1{
  21. using ::boost::tuple;
  22. // [6.1.3.2] Tuple creation functions
  23. using ::boost::tuples::ignore;
  24. using ::boost::make_tuple;
  25. using ::boost::tie;
  26. // [6.1.3.3] Tuple helper classes
  27. template <class T>
  28. struct tuple_size
  29. : public ::boost::integral_constant
  30. < ::std::size_t, ::boost::tuples::length<T>::value>
  31. {};
  32. template < int I, class T>
  33. struct tuple_element
  34. {
  35. typedef typename boost::tuples::element<I,T>::type type;
  36. };
  37. #if !BOOST_WORKAROUND(__BORLANDC__, < 0x0582)
  38. // [6.1.3.4] Element access
  39. using ::boost::get;
  40. #endif
  41. } } // namespaces
  42. #else
  43. #include <boost/fusion/include/tuple.hpp>
  44. #include <boost/fusion/include/std_pair.hpp>
  45. namespace std{ namespace tr1{
  46. using ::boost::fusion::tuple;
  47. // [6.1.3.2] Tuple creation functions
  48. using ::boost::fusion::ignore;
  49. using ::boost::fusion::make_tuple;
  50. using ::boost::fusion::tie;
  51. using ::boost::fusion::get;
  52. // [6.1.3.3] Tuple helper classes
  53. using ::boost::fusion::tuple_size;
  54. using ::boost::fusion::tuple_element;
  55. }}
  56. #endif
  57. #endif
  58. #endif