diff options
Diffstat (limited to 'Wallet.cpp')
| -rw-r--r-- | Wallet.cpp | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -1,6 +1,31 @@ #include "Wallet.h" -Wallet::Wallet(QObject *parent) : QObject(parent) +struct WalletImpl { + // TODO +}; + + +Wallet::Wallet(QObject *parent) + : QObject(parent) +{ + +} + + +QString Wallet::getSeed() const +{ + return "bound class paint gasp task soul forgot past pleasure physical circle " + " appear shore bathroom glove women crap busy beauty bliss idea give needle burden"; +} + +QString Wallet::getSeedLanguage() const +{ + return "English"; +} + +void Wallet::setSeedLaguage(const QString &lang) +{ + // TODO; } |
