mp_list.hpp 491 B

123456789101112131415161718192021222324
  1. #ifndef BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED
  2. #define BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED
  3. // Copyright 2015, 2016 Peter Dimov.
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. //
  7. // See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt
  9. namespace boost
  10. {
  11. namespace mp11
  12. {
  13. // mp_list<T...>
  14. template<class... T> struct mp_list
  15. {
  16. };
  17. } // namespace mp11
  18. } // namespace boost
  19. #endif // #ifndef BOOST_MP11_DETAIL_MP_LIST_HPP_INCLUDED