is_sequence_impl.hpp 901 B

1234567891011121314151617181920212223242526272829303132
  1. /*=============================================================================
  2. Copyright (c) 2010 Christopher Schmidt
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #ifndef BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
  7. #define BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
  8. #include <boost/fusion/support/config.hpp>
  9. #include <boost/mpl/bool.hpp>
  10. namespace boost { namespace fusion
  11. {
  12. struct deque_tag;
  13. namespace extension
  14. {
  15. template<typename T>
  16. struct is_sequence_impl;
  17. template<>
  18. struct is_sequence_impl<deque_tag>
  19. {
  20. template<typename Sequence>
  21. struct apply : mpl::true_ {};
  22. };
  23. }
  24. }}
  25. #endif