Clio  develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
Concepts.hpp
1#pragma once
2
3#include <concepts>
4
5namespace cluster {
6
16
17template <typename T>
18concept SomeClusterCommunicationService = std::derived_from<T, ClusterCommunicationServiceTag>;
19
20} // namespace cluster
Tag type for cluster communication service implementations.
Definition Concepts.hpp:13