]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/icl/type_traits/is_continuous_interval.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / icl / type_traits / is_continuous_interval.hpp
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_CONTINUOUS_INTERVAL_HPP_JOFA_100331
9 #define BOOST_ICL_TYPE_TRAITS_IS_CONTINUOUS_INTERVAL_HPP_JOFA_100331
10
11 #include <boost/icl/type_traits/is_interval.hpp>
12
13 namespace boost{ namespace icl
14 {
15
16 template <class Type> struct is_continuous_interval
17 {
18 typedef is_continuous_interval<Type> type;
19 BOOST_STATIC_CONSTANT(bool, value = false);
20 };
21
22 }} // namespace boost icl
23
24 #endif
25
26