2022-05-25 14:55:44 -04:00
|
|
|
// Copyright (c) 2022 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
|
2022-06-08 10:03:43 -03:00
|
|
|
//! state. The kernel library API is a work in progress, so state organization
|
2022-05-25 14:55:44 -04:00
|
|
|
//! 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 {
|
2022-05-25 14:31:54 -04:00
|
|
|
Context();
|
2022-05-25 14:55:44 -04:00
|
|
|
};
|
|
|
|
} // namespace kernel
|
|
|
|
|
|
|
|
#endif // BITCOIN_KERNEL_CONTEXT_H
|