// Copyright (C) 2008-2009 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_SET_FWD_HPP_INCLUDED #define BOOST_UNORDERED_SET_FWD_HPP_INCLUDED #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include #include #include #include namespace boost { template , class P = std::equal_to, class A = std::allocator > class unordered_set; template bool operator==(unordered_set const&, unordered_set const&); template bool operator!=(unordered_set const&, unordered_set const&); template void swap(unordered_set &m1, unordered_set &m2); template , class P = std::equal_to, class A = std::allocator > class unordered_multiset; template bool operator==(unordered_multiset const&, unordered_multiset const&); template bool operator!=(unordered_multiset const&, unordered_multiset const&); template void swap(unordered_multiset &m1, unordered_multiset &m2); } #endif