is_interval_joiner.hpp 849 B

12345678910111213141516171819202122232425
  1. /*-----------------------------------------------------------------------------+
  2. Copyright (c) 2008-2009: Joachim Faulhaber
  3. +------------------------------------------------------------------------------+
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENCE.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. +-----------------------------------------------------------------------------*/
  8. #ifndef BOOST_ICL_TYPE_TRAITS_IS_INTERVAL_JOINER_HPP_JOFA_100901
  9. #define BOOST_ICL_TYPE_TRAITS_IS_INTERVAL_JOINER_HPP_JOFA_100901
  10. #include <boost/config.hpp>
  11. namespace boost{ namespace icl
  12. {
  13. template <class Type> struct is_interval_joiner
  14. {
  15. typedef is_interval_joiner<Type> type;
  16. BOOST_STATIC_CONSTANT(bool, value = false);
  17. };
  18. }} // namespace boost icl
  19. #endif