mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 23:18:14 +01:00
update core to d0d80170a2 (CWallet class)
This commit is contained in:
@@ -5,12 +5,13 @@
|
||||
#include <QStringList>
|
||||
|
||||
class AddressTablePriv;
|
||||
class CWallet;
|
||||
|
||||
class AddressTableModel : public QAbstractTableModel
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit AddressTableModel(QObject *parent = 0);
|
||||
explicit AddressTableModel(CWallet *wallet, QObject *parent = 0);
|
||||
~AddressTableModel();
|
||||
|
||||
enum ColumnIndex {
|
||||
@@ -49,6 +50,7 @@ public:
|
||||
void updateList();
|
||||
|
||||
private:
|
||||
CWallet *wallet;
|
||||
AddressTablePriv *priv;
|
||||
QStringList columns;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user