interval_combining_style.hpp 945 B

12345678910111213141516171819202122232425262728
  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_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906
  9. #define BOOST_ICL_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906
  10. namespace boost{ namespace icl
  11. {
  12. namespace interval_combine
  13. {
  14. BOOST_STATIC_CONSTANT(int, unknown = 0);
  15. BOOST_STATIC_CONSTANT(int, joining = 1);
  16. BOOST_STATIC_CONSTANT(int, separating = 2);
  17. BOOST_STATIC_CONSTANT(int, splitting = 3);
  18. BOOST_STATIC_CONSTANT(int, elemental = 4);
  19. } // namespace interval_combine
  20. }} // namespace boost icl
  21. #endif