aboutsummaryrefslogtreecommitdiff
path: root/Wallet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Wallet.cpp')
-rw-r--r--Wallet.cpp27
1 files changed, 26 insertions, 1 deletions
diff --git a/Wallet.cpp b/Wallet.cpp
index 89e448fd..5507f531 100644
--- a/Wallet.cpp
+++ b/Wallet.cpp
@@ -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;
}