deprecated_namespace.hpp 714 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 2017 Andrey Semashev
  3. *
  4. * Distributed under the Boost Software License, Version 1.0.
  5. * See http://www.boost.org/LICENSE_1_0.txt
  6. *
  7. * This header is deprecated, it provides the deprecated namespace for backward compatibility.
  8. */
  9. #ifndef BOOST_DETAIL_WINAPI_DETAIL_DEPRECATED_NAMESPACE_HPP_INCLUDED_
  10. #define BOOST_DETAIL_WINAPI_DETAIL_DEPRECATED_NAMESPACE_HPP_INCLUDED_
  11. #include <boost/config.hpp>
  12. #ifdef BOOST_HAS_PRAGMA_ONCE
  13. #pragma once
  14. #endif
  15. namespace boost {
  16. namespace winapi {}
  17. namespace detail {
  18. namespace winapi {
  19. using namespace boost::winapi;
  20. } // namespace winapi
  21. } // namespace detail
  22. } // namespace boost
  23. #endif // BOOST_DETAIL_WINAPI_DETAIL_DEPRECATED_NAMESPACE_HPP_INCLUDED_