mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
31 lines
606 B
C++
31 lines
606 B
C++
#ifndef BEAST_CONTAINER_AGED_UNORDERED_SET_H_INCLUDED
|
|
#define BEAST_CONTAINER_AGED_UNORDERED_SET_H_INCLUDED
|
|
|
|
#include <xrpl/beast/container/detail/aged_unordered_container.h>
|
|
|
|
#include <chrono>
|
|
#include <functional>
|
|
#include <memory>
|
|
|
|
namespace beast {
|
|
|
|
template <
|
|
class Key,
|
|
class Clock = std::chrono::steady_clock,
|
|
class Hash = std::hash<Key>,
|
|
class KeyEqual = std::equal_to<Key>,
|
|
class Allocator = std::allocator<Key>>
|
|
using aged_unordered_set = detail::aged_unordered_container<
|
|
false,
|
|
false,
|
|
Key,
|
|
void,
|
|
Clock,
|
|
Hash,
|
|
KeyEqual,
|
|
Allocator>;
|
|
|
|
}
|
|
|
|
#endif
|