mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
31 lines
470 B
C++
31 lines
470 B
C++
#include "Wallet.h"
|
|
|
|
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;
|
|
}
|