]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/icl/include/boost/icl/interval_combining_style.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / icl / include / boost / icl / interval_combining_style.hpp
CommitLineData
7c673cae
FG
1/*-----------------------------------------------------------------------------+
2Copyright (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
11namespace boost{ namespace icl
12{
13
14namespace 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