/* Copyright 2008 Vicente J. Botet Escriba * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * See http://www.boost.org/libs/mpl_ext for library home page. */ #ifndef BOOST_MPLEXT_OR_SEQ_HPP_ #define BOOST_MPLEXT_OR_SEQ_HPP_ #include #include #include #include namespace boost { namespace mpl_ext { /* Calculate the mlp::or_ of a sequence of nullary logical metafunctions. */ template struct or_seq : mpl::not_::type, typename mpl::end::type> > {}; } // mpl_ext } // boost #endif // BOOST_MPLEXT_OR_SEQ_HPP_