2020-04-18 11:59:40 +02:00
|
|
|
// Copyright (c) 2017 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#ifndef BITCOIN_WALLETINITINTERFACE_H
|
|
|
|
#define BITCOIN_WALLETINITINTERFACE_H
|
2020-04-18 11:59:40 +02:00
|
|
|
|
2018-11-09 15:36:34 +01:00
|
|
|
struct InitInterfaces;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
class WalletInitInterface {
|
|
|
|
public:
|
2021-08-05 16:41:46 +02:00
|
|
|
/** Is the wallet component enabled */
|
|
|
|
virtual bool HasWalletSupport() const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
/** Get wallet help string */
|
2021-03-19 16:00:24 +01:00
|
|
|
virtual void AddWalletOptions() const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
/** Check wallet parameter interaction */
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual bool ParameterInteraction() const = 0;
|
2018-11-09 15:36:34 +01:00
|
|
|
/** Add wallets that should be opened to list of init interfaces. */
|
|
|
|
virtual void Construct(InitInterfaces& interfaces) const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
// Dash Specific WalletInitInterface
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual void AutoLockMasternodeCollaterals() const = 0;
|
2021-03-17 23:36:11 +01:00
|
|
|
virtual void InitCoinJoinSettings() const = 0;
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual bool InitAutoBackup() const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
virtual ~WalletInitInterface() {}
|
|
|
|
};
|
|
|
|
|
2021-08-05 16:41:46 +02:00
|
|
|
extern const WalletInitInterface& g_wallet_init_interface;
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#endif // BITCOIN_WALLETINITINTERFACE_H
|