2016-11-16 21:24:13 +02:00
|
|
|
#ifndef BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED
|
|
|
|
|
#define BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED
|
|
|
|
|
|
|
|
|
|
// Copyright 2015, 2016 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
|
|
|
|
|
{
|
2017-03-15 21:23:15 +02:00
|
|
|
namespace mp11
|
|
|
|
|
{
|
2016-11-16 21:24:13 +02:00
|
|
|
|
|
|
|
|
// mp_list<T...>
|
|
|
|
|
template<class... T> struct mp_list
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-15 21:23:15 +02:00
|
|
|
} // namespace mp11
|
2016-11-16 21:24:13 +02:00
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
|
|
#endif // #ifndef BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED
|