is_discrete_interval.hpp 858 B

1234567891011121314151617181920212223242526
  1. /*-----------------------------------------------------------------------------+
  2. Copyright (c) 2010-2010: 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_DISCRETE_INTERVAL_HPP_JOFA_100327
  9. #define BOOST_ICL_TYPE_TRAITS_IS_DISCRETE_INTERVAL_HPP_JOFA_100327
  10. #include <boost/icl/type_traits/is_interval.hpp>
  11. namespace boost{ namespace icl
  12. {
  13. template <class Type> struct is_discrete_interval
  14. {
  15. typedef is_discrete_interval<Type> type;
  16. BOOST_STATIC_CONSTANT(bool, value = false);
  17. };
  18. }} // namespace boost icl
  19. #endif