integrating cpp wallet mockups with QML

This commit is contained in:
Ilya Kitaev
2016-02-24 13:25:20 +03:00
parent 1195a89d06
commit 625041df18
11 changed files with 172 additions and 36 deletions

View File

@@ -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;
}