mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +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
|