cpp03_msgpack_tuple_decl.hpp.erb 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // MessagePack for C++ static resolution routine
  3. //
  4. // Copyright (C) 2008-2016 FURUHASHI Sadayuki and KONDO Takatoshi
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef MSGPACK_V1_CPP03_MSGPACK_TUPLE_DECL_HPP
  11. #define MSGPACK_V1_CPP03_MSGPACK_TUPLE_DECL_HPP
  12. #include "msgpack/versioning.hpp"
  13. #include "msgpack/object.hpp"
  14. #include "msgpack/adaptor/adaptor_base.hpp"
  15. namespace msgpack {
  16. /// @cond
  17. MSGPACK_API_VERSION_NAMESPACE(v1) {
  18. /// @endcond
  19. namespace type {
  20. // FIXME operator==
  21. // FIXME operator!=
  22. <% GENERATION_LIMIT = 31 %>
  23. /// @cond
  24. template <typename A0 = void<%1.upto(GENERATION_LIMIT+1) {|i|%>, typename A<%=i%> = void<%}%>>
  25. struct tuple;
  26. /// @endcond
  27. template <typename Tuple, int N>
  28. struct tuple_element;
  29. template <typename Tuple, int N>
  30. struct const_tuple_element;
  31. template <typename T>
  32. struct tuple_type;
  33. /// @cond
  34. <%0.upto(GENERATION_LIMIT) {|i|%>
  35. template <int N, typename A0<%1.upto(i) {|j|%>, typename A<%=j%><%}%>>
  36. typename type::tuple_element<type::tuple<A0<%1.upto(i) {|j|%>, A<%=j%><%}%>>, N>::reference get(type::tuple<A0<%1.upto(i) {|j|%>, A<%=j%><%}%>>& t);
  37. template <int N, typename A0<%1.upto(i) {|j|%>, typename A<%=j%><%}%>>
  38. typename type::const_tuple_element<type::tuple<A0<%1.upto(i) {|j|%>, A<%=j%><%}%>>, N>::const_reference get(type::tuple<A0<%1.upto(i) {|j|%>, A<%=j%><%}%>> const& t);
  39. <%}%>
  40. /// @endcond
  41. tuple<> make_tuple();
  42. /// @cond
  43. <%0.upto(GENERATION_LIMIT) {|i|%>
  44. template <typename A0<%1.upto(i) {|j|%>, typename A<%=j%><%}%>>
  45. tuple<A0<%1.upto(i) {|j|%>, A<%=j%><%}%>> make_tuple(typename tuple_type<A0>::transparent_reference a0<%1.upto(i) {|j|%>, typename tuple_type<A<%=j%>>::transparent_reference a<%=j%><%}%>);
  46. <%}%>
  47. /// @endcond
  48. } // namespace type
  49. /// @cond
  50. } // MSGPACK_API_VERSION_NAMESPACE(v1)
  51. /// @endcond
  52. } // namespace msgpack
  53. #endif // MSGPACK_V1_CPP03_MSGPACK_TUPLE_DECL_HPP