From 21693ff0b743f094e73111a81c1c86e2622d937c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Barbosa?= Date: Fri, 28 Sep 2018 12:50:04 +0100 Subject: wallet: Add WalletLocation utility class Github-Pull: #14350 Rebased-From: 01a4c09 --- src/wallet/walletutil.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/wallet/walletutil.h') diff --git a/src/wallet/walletutil.h b/src/wallet/walletutil.h index 7c42954616..a8cd7b6180 100644 --- a/src/wallet/walletutil.h +++ b/src/wallet/walletutil.h @@ -11,4 +11,24 @@ //! Get the path of the wallet directory. fs::path GetWalletDir(); +//! The WalletLocation class provides wallet information. +class WalletLocation final +{ + std::string m_name; + fs::path m_path; + +public: + explicit WalletLocation() {} + explicit WalletLocation(const std::string& name); + + //! Get wallet name. + const std::string& GetName() const { return m_name; } + + //! Get wallet absolute path. + const fs::path& GetPath() const { return m_path; } + + //! Return whether the wallet exists. + bool Exists() const; +}; + #endif // BITCOIN_WALLET_WALLETUTIL_H -- cgit v1.2.3