mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-30 13:07:32 -03:00
be55f545d5
This is an extraction of ArgsManager related functions from util/system into their own common file. Config file related functions are moved to common/config.cpp. The background of this commit is an ongoing effort to decouple the libbitcoinkernel library from the ArgsManager. The ArgsManager belongs into the common library, since the kernel library should not depend on it. See doc/design/libraries.md for more information on this rationale.
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
// Copyright (c) 2021-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.
|
|
|
|
#include <common/args.h>
|
|
#include <interfaces/chain.h>
|
|
#include <interfaces/echo.h>
|
|
#include <interfaces/init.h>
|
|
#include <interfaces/node.h>
|
|
#include <interfaces/wallet.h>
|
|
#include <node/context.h>
|
|
#include <util/check.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace init {
|
|
namespace {
|
|
class BitcoinQtInit : public interfaces::Init
|
|
{
|
|
public:
|
|
BitcoinQtInit()
|
|
{
|
|
m_node.args = &gArgs;
|
|
m_node.init = this;
|
|
}
|
|
std::unique_ptr<interfaces::Node> makeNode() override { return interfaces::MakeNode(m_node); }
|
|
std::unique_ptr<interfaces::Chain> makeChain() override { return interfaces::MakeChain(m_node); }
|
|
std::unique_ptr<interfaces::WalletLoader> makeWalletLoader(interfaces::Chain& chain) override
|
|
{
|
|
return MakeWalletLoader(chain, *Assert(m_node.args));
|
|
}
|
|
std::unique_ptr<interfaces::Echo> makeEcho() override { return interfaces::MakeEcho(); }
|
|
node::NodeContext m_node;
|
|
};
|
|
} // namespace
|
|
} // namespace init
|
|
|
|
namespace interfaces {
|
|
std::unique_ptr<Init> MakeGuiInit(int argc, char* argv[])
|
|
{
|
|
return std::make_unique<init::BitcoinQtInit>();
|
|
}
|
|
} // namespace interfaces
|