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 11 namespace boost{ namespace icl 12 { 13 14 namespace interval_combine 15 { 16 BOOST_STATIC_CONSTANT(int, unknown = 0); 17 BOOST_STATIC_CONSTANT(int, joining = 1); 18 BOOST_STATIC_CONSTANT(int, separating = 2); 19 BOOST_STATIC_CONSTANT(int, splitting = 3); 20 BOOST_STATIC_CONSTANT(int, elemental = 4); 21 22 } // namespace interval_combine 23 24 }} // namespace boost icl 25 26 #endif 27 28 29