// Copyright (C) 2008-2011 Daniel James. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_UNORDERED_MAP_FWD_HPP_INCLUDED #define BOOST_UNORDERED_MAP_FWD_HPP_INCLUDED #include #if defined(BOOST_HAS_PRAGMA_ONCE) #pragma once #endif #include #include #include #include namespace boost { namespace unordered { template , class P = std::equal_to, class A = std::allocator > > class unordered_map; template inline bool operator==( unordered_map const&, unordered_map const&); template inline bool operator!=( unordered_map const&, unordered_map const&); template inline void swap( unordered_map& m1, unordered_map& m2) BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT_EXPR(m1.swap(m2))); template , class P = std::equal_to, class A = std::allocator > > class unordered_multimap; template inline bool operator==(unordered_multimap const&, unordered_multimap const&); template inline bool operator!=(unordered_multimap const&, unordered_multimap const&); template inline void swap(unordered_multimap& m1, unordered_multimap& m2) BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT_EXPR(m1.swap(m2))); template class node_handle_map; template struct insert_return_type_map; } using boost::unordered::unordered_map; using boost::unordered::unordered_multimap; using boost::unordered::swap; using boost::unordered::operator==; using boost::unordered::operator!=; } #endif