unordered_map.hpp 868 B

123456789101112131415161718192021222324252627282930313233
  1. // (C) Copyright John Maddock 2008.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TR1_UNORDERED_MAP_HPP_INCLUDED
  6. # define BOOST_TR1_UNORDERED_MAP_HPP_INCLUDED
  7. # include <boost/tr1/detail/config.hpp>
  8. #ifdef BOOST_HAS_TR1_UNORDERED_MAP
  9. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  10. # include_next BOOST_TR1_HEADER(unordered_map)
  11. # else
  12. # include <boost/tr1/detail/config_all.hpp>
  13. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(unordered_map))
  14. # endif
  15. #else
  16. #include <boost/unordered_map.hpp>
  17. namespace std{ namespace tr1{
  18. using ::boost::unordered_map;
  19. using ::boost::unordered_multimap;
  20. using ::boost::swap;
  21. } } // namespaces
  22. #endif
  23. #endif