Bitcoin Core 28.99.0
P2P Digital Currency
check_globals.h
Go to the documentation of this file.
1// Copyright (c) 2024-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_TEST_FUZZ_UTIL_CHECK_GLOBALS_H
6#define BITCOIN_TEST_FUZZ_UTIL_CHECK_GLOBALS_H
7
8#include <memory>
9#include <optional>
10#include <string>
11
12struct CheckGlobalsImpl;
16 std::unique_ptr<CheckGlobalsImpl> m_impl;
17};
18
19#endif // BITCOIN_TEST_FUZZ_UTIL_CHECK_GLOBALS_H
std::unique_ptr< CheckGlobalsImpl > m_impl
Definition: check_globals.h:16