123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_VALUE_AT_IMPL_HPP
- #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_VALUE_AT_IMPL_HPP
- namespace boost { namespace fusion { namespace extension
- {
- template<typename>
- struct value_at_impl;
- template <>
- struct value_at_impl<struct_tag>
- {
- template <typename Seq, typename N>
- struct apply
- : access::struct_member<typename remove_const<Seq>::type, N::value>
- {};
- };
- template <>
- struct value_at_impl<assoc_struct_tag>
- : value_at_impl<struct_tag>
- {};
- }}}
- #endif
|