forked from boostorg/mp11
24 lines
465 B
C++
24 lines
465 B
C++
|
|
#ifndef BOOST_MP11_FUNCTION_HPP_INCLUDED
|
||
|
|
#define BOOST_MP11_FUNCTION_HPP_INCLUDED
|
||
|
|
|
||
|
|
// Copyright 2015 Peter Dimov.
|
||
|
|
//
|
||
|
|
// 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
|
||
|
|
|
||
|
|
namespace boost
|
||
|
|
{
|
||
|
|
|
||
|
|
// mp_plus<T...>
|
||
|
|
// mp_not<T>
|
||
|
|
// mp_all<T...>
|
||
|
|
// mp_and<T...>
|
||
|
|
// mp_any<T...>
|
||
|
|
// mp_or<T...>
|
||
|
|
|
||
|
|
} // namespace boost
|
||
|
|
|
||
|
|
#endif // #ifndef BOOST_MP11_FUNCTION_HPP_INCLUDED
|