/Src/Dependencies/Boost/boost/fusion/support/is_iterator.hpp

http://hadesmem.googlecode.com/ · C++ Header · 20 lines · 10 code · 4 blank · 6 comment · 0 complexity · a5992a435808cfc6a7e824864a16d848 MD5 · raw file

  1. /*=============================================================================
  2. Copyright (c) 2001-2006 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(FUSION_IS_ITERATOR_05062005_1219)
  7. #define FUSION_IS_ITERATOR_05062005_1219
  8. #include <boost/type_traits/is_base_of.hpp>
  9. namespace boost { namespace fusion
  10. {
  11. struct iterator_root;
  12. template <typename T>
  13. struct is_fusion_iterator : is_base_of<iterator_root, T> {};
  14. }}
  15. #endif