list.hpp 575 B

123456789101112131415161718192021222324252627
  1. #ifndef BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
  2. #define BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
  3. // Copyright 2020 Peter Dimov
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // https://www.boost.org/LICENSE_1_0.txt
  6. #include <boost/describe/detail/config.hpp>
  7. #if defined(BOOST_DESCRIBE_CXX11)
  8. namespace boost
  9. {
  10. namespace describe
  11. {
  12. namespace detail
  13. {
  14. template<class... T> struct list {};
  15. } // namespace detail
  16. } // namespace describe
  17. } // namespace boost
  18. #endif // defined(BOOST_DESCRIBE_CXX11)
  19. #endif // #ifndef BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED