mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
16 lines
341 B
C++
16 lines
341 B
C++
#pragma once
|
|
|
|
#include <xrpl/basics/IntrusivePointer.h>
|
|
#include <xrpl/basics/TaggedCache.h>
|
|
#include <xrpl/shamap/SHAMapTreeNode.h>
|
|
|
|
namespace xrpl {
|
|
|
|
using TreeNodeCache = TaggedCache<
|
|
uint256,
|
|
SHAMapTreeNode,
|
|
/*IsKeyCache*/ false,
|
|
intr_ptr::SharedWeakUnionPtr<SHAMapTreeNode>,
|
|
SHAMapTreeNodePtr>;
|
|
} // namespace xrpl
|