mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-08 06:37:50 +02:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
22 lines
808 B
C++
22 lines
808 B
C++
// Copyright (c) 2022-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_KERNEL_CONTEXT_H
|
|
#define BITCOIN_KERNEL_CONTEXT_H
|
|
|
|
namespace kernel {
|
|
//! Context struct holding the kernel library's logically global state, and
|
|
//! passed to external libbitcoin_kernel functions which need access to this
|
|
//! state. The kernel library API is a work in progress, so state organization
|
|
//! and member list will evolve over time.
|
|
//!
|
|
//! State stored directly in this struct should be simple. More complex state
|
|
//! should be stored to std::unique_ptr members pointing to opaque types.
|
|
struct Context {
|
|
Context();
|
|
};
|
|
} // namespace kernel
|
|
|
|
#endif // BITCOIN_KERNEL_CONTEXT_H
|