is_view_impl.hpp 874 B

12345678910111213141516171819202122232425262728293031
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Joel de Guzman
  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. #if !defined(BOOST_FUSION_IS_VIEW_IMPL_09272006_0725)
  7. #define BOOST_FUSION_IS_VIEW_IMPL_09272006_0725
  8. #include <boost/fusion/support/config.hpp>
  9. #include <boost/mpl/bool.hpp>
  10. namespace boost { namespace fusion
  11. {
  12. struct boost_tuple_tag;
  13. namespace extension
  14. {
  15. template<typename Tag>
  16. struct is_view_impl;
  17. template<>
  18. struct is_view_impl<boost_tuple_tag>
  19. {
  20. template<typename T>
  21. struct apply : mpl::false_ {};
  22. };
  23. }
  24. }}
  25. #endif