mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
19 lines
448 B
C++
19 lines
448 B
C++
#ifndef XRPL_SHAMAP_TREENODECACHE_H_INCLUDED
|
|
#define XRPL_SHAMAP_TREENODECACHE_H_INCLUDED
|
|
|
|
#include <xrpl/basics/IntrusivePointer.h>
|
|
#include <xrpl/basics/TaggedCache.h>
|
|
#include <xrpl/shamap/SHAMapTreeNode.h>
|
|
|
|
namespace ripple {
|
|
|
|
using TreeNodeCache = TaggedCache<
|
|
uint256,
|
|
SHAMapTreeNode,
|
|
/*IsKeyCache*/ false,
|
|
intr_ptr::SharedWeakUnionPtr<SHAMapTreeNode>,
|
|
intr_ptr::SharedPtr<SHAMapTreeNode>>;
|
|
} // namespace ripple
|
|
|
|
#endif
|