1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
- #define BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
- #include <boost/fusion/support/config.hpp>
- #include <boost/mpl/bool.hpp>
- namespace boost { namespace fusion
- {
- struct deque_tag;
- namespace extension
- {
- template<typename T>
- struct is_sequence_impl;
- template<>
- struct is_sequence_impl<deque_tag>
- {
- template<typename Sequence>
- struct apply : mpl::true_ {};
- };
- }
- }}
- #endif
|