yuzu/externals/vcpkg/packages/boost-icl_x64-windows/include/boost/icl/type_traits/is_icl_container.hpp

34 lines
1.1 KiB
C++
Executable File

/*-----------------------------------------------------------------------------+
Copyright (c) 2010-2010: Joachim Faulhaber
+------------------------------------------------------------------------------+
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENCE.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
+-----------------------------------------------------------------------------*/
#ifndef BOOST_ICL_TYPE_TRAITS_IS_ICL_CONTAINER_HPP_JOFA_100831
#define BOOST_ICL_TYPE_TRAITS_IS_ICL_CONTAINER_HPP_JOFA_100831
#include <boost/mpl/and.hpp>
#include <boost/mpl/or.hpp>
#include <boost/mpl/not.hpp>
#include <boost/icl/type_traits/is_element_container.hpp>
#include <boost/icl/type_traits/is_interval_container.hpp>
#include <boost/icl/type_traits/is_set.hpp>
namespace boost{ namespace icl
{
template <class Type>
struct is_icl_container
{
typedef is_icl_container<Type> type;
BOOST_STATIC_CONSTANT(bool, value =
(mpl::or_< is_element_container<Type>
, is_interval_container<Type> >::value));
};
}} // namespace boost icl
#endif