// Copyright (C) 2023 Christian Mazakas // 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_NODE_SET_FWD_HPP_INCLUDED #define BOOST_UNORDERED_NODE_SET_FWD_HPP_INCLUDED #include #if defined(BOOST_HAS_PRAGMA_ONCE) #pragma once #endif #include #include #include namespace boost { namespace unordered { template , class KeyEqual = std::equal_to, class Allocator = std::allocator > class unordered_node_set; template bool operator==( unordered_node_set const& lhs, unordered_node_set const& rhs); template bool operator!=( unordered_node_set const& lhs, unordered_node_set const& rhs); template void swap(unordered_node_set& lhs, unordered_node_set& rhs) noexcept(noexcept(lhs.swap(rhs))); } // namespace unordered using boost::unordered::unordered_node_set; } // namespace boost #endif