File indexing completed on 2025-01-18 09:34:41
0001
0002
0003
0004
0005
0006
0007 #if !defined(FUSION_ADAPT_VALUE_TRAITS_05062005_0859)
0008 #define FUSION_ADAPT_VALUE_TRAITS_05062005_0859
0009
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/iterator/value_of.hpp>
0012
0013 namespace boost { namespace fusion { namespace detail
0014 {
0015 struct adapt_value_traits
0016 {
0017 template <typename Iterator>
0018 struct apply
0019 {
0020 typedef typename
0021 result_of::value_of<typename Iterator::first_type>::type
0022 type;
0023 };
0024 };
0025 }}}
0026
0027 #endif
0028
0029