forked from Public/monero-gui
integrating cpp wallet mockups with QML
This commit is contained in:
18
Wallet.h
18
Wallet.h
@@ -3,15 +3,27 @@
|
||||
|
||||
#include <QObject>
|
||||
|
||||
struct WalletImpl;
|
||||
|
||||
class Wallet : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QString seed READ getSeed)
|
||||
public:
|
||||
explicit Wallet(QObject *parent = 0);
|
||||
|
||||
QString getSeed() const;
|
||||
QString getSeedLanguage() const;
|
||||
void setSeedLaguage(const QString &lang);
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
|
||||
|
||||
friend class WalletManager;
|
||||
WalletImpl * m_pimpl;
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif // WALLET_H
|
||||
#endif // WALLET_H
|
||||
|
||||
Reference in New Issue
Block a user