forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext.h
34 lines (28 loc) · 1.14 KB
/
context.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2022 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CONTEXT_H
#define BITCOIN_CONTEXT_H
#include <variant>
#include <optional>
class ChainstateManager;
class CTxMemPool;
class CBlockPolicyEstimator;
struct LLMQContext;
struct NodeContext;
struct WalletContext;
using CoreContext = std::variant<std::nullopt_t,
std::reference_wrapper<NodeContext>,
std::reference_wrapper<WalletContext>,
std::reference_wrapper<CTxMemPool>,
std::reference_wrapper<ChainstateManager>,
std::reference_wrapper<CBlockPolicyEstimator>,
std::reference_wrapper<LLMQContext>>;
template<typename T>
T* GetContext(const CoreContext& ctx) noexcept
{
return std::holds_alternative<std::reference_wrapper<T>>(ctx)
? &std::get<std::reference_wrapper<T>>(ctx).get()
: nullptr;
}
#endif // BITCOIN_CONTEXT_VARIANT_H