12345678910111213141516171819202122232425262728293031 |
- #if !defined(BOOST_FUSION_VALUE_AT_IMPL_09262006_1926)
- #define BOOST_FUSION_VALUE_AT_IMPL_09262006_1926
- #include <boost/fusion/support/config.hpp>
- #include <boost/tuple/tuple.hpp>
- namespace boost { namespace fusion
- {
- struct boost_tuple_tag;
- namespace extension
- {
- template<typename T>
- struct value_at_impl;
- template <>
- struct value_at_impl<boost_tuple_tag>
- {
- template <typename Sequence, typename N>
- struct apply : tuples::element<N::value, Sequence> {};
- };
- }
- }}
- #endif
|