Chris@16: /*-----------------------------------------------------------------------------+ Chris@16: Copyright (c) 2010-2010: Joachim Faulhaber Chris@16: +------------------------------------------------------------------------------+ Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENCE.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: +-----------------------------------------------------------------------------*/ Chris@16: #ifndef BOOST_ICL_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906 Chris@16: #define BOOST_ICL_INTERVAL_COMBINING_STYLE_HPP_JOFA_100906 Chris@16: Chris@16: namespace boost{ namespace icl Chris@16: { Chris@16: Chris@16: namespace interval_combine Chris@16: { Chris@16: BOOST_STATIC_CONSTANT(int, unknown = 0); Chris@16: BOOST_STATIC_CONSTANT(int, joining = 1); Chris@16: BOOST_STATIC_CONSTANT(int, separating = 2); Chris@16: BOOST_STATIC_CONSTANT(int, splitting = 3); Chris@16: BOOST_STATIC_CONSTANT(int, elemental = 4); Chris@16: Chris@16: } // namespace interval_combine Chris@16: Chris@16: }} // namespace boost icl Chris@16: Chris@16: #endif Chris@16: Chris@16: