forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wallet] Create wallet init interface.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// 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. | ||
|
||
#ifndef WALLETINITINTERFACE_H | ||
#define WALLETINITINTERFACE_H | ||
|
||
#include <string> | ||
|
||
class CScheduler; | ||
class CRPCTable; | ||
|
||
class WalletInitInterface { | ||
public: | ||
/** Get wallet help string */ | ||
virtual std::string GetHelpString(bool showDebug) = 0; | ||
/** Check wallet parameter interaction */ | ||
virtual bool ParameterInteraction() = 0; | ||
/** Register wallet RPC*/ | ||
virtual void RegisterRPC(CRPCTable &) = 0; | ||
/** Verify wallets */ | ||
virtual bool Verify() = 0; | ||
/** Open wallets*/ | ||
virtual bool Open() = 0; | ||
/** Start wallets*/ | ||
virtual void Start(CScheduler& scheduler) = 0; | ||
/** Flush Wallets*/ | ||
virtual void Flush() = 0; | ||
/** Stop Wallets*/ | ||
virtual void Stop() = 0; | ||
/** Close wallets */ | ||
virtual void Close() = 0; | ||
|
||
virtual ~WalletInitInterface() {} | ||
}; | ||
|
||
#endif // WALLETINITINTERFACE_H |