list.hpp 565 B

123456789101112131415161718192021222324252627
  1. #ifndef BHO_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
  2. #define BHO_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 <asio2/bho/describe/detail/config.hpp>
  7. #if defined(BHO_DESCRIBE_CXX11)
  8. namespace bho
  9. {
  10. namespace describe
  11. {
  12. namespace detail
  13. {
  14. template<class... T> struct list {};
  15. } // namespace detail
  16. } // namespace describe
  17. } // namespace bho
  18. #endif // defined(BHO_DESCRIBE_CXX11)
  19. #endif // #ifndef BHO_DESCRIBE_DETAIL_LIST_HPP_INCLUDED