tuple.hpp 778 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (C) 2013 Vicente J. Botet Escriba
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. //
  6. // 2013/10 Vicente J. Botet Escriba
  7. // Creation.
  8. #ifndef BOOST_CSBL_TUPLE_HPP
  9. #define BOOST_CSBL_TUPLE_HPP
  10. #include <tuple>
  11. namespace boost
  12. {
  13. namespace csbl
  14. {
  15. // 20.4.2, class template tuple:
  16. using ::std::tuple;
  17. using ::std::get;
  18. using ::std::make_tuple;
  19. using ::std::tuple_size;
  20. // 20.4.2.4, tuple creation functions:
  21. // 20.4.2.5, tuple helper classes:
  22. // 20.4.2.6, element access:
  23. // 20.4.2.7, relational operators:
  24. // 20.4.2.8, allocator-related traits
  25. // 20.4.2.9, specialized algorithms:
  26. }
  27. }
  28. #endif // header