#ifndef BALANCESTABLEMODEL_H #define BALANCESTABLEMODEL_H #include "unspentoutput.h" #include "precompiled.h" class BalancesTableModel : public QAbstractTableModel { public: BalancesTableModel(QObject* parent, const QMap* balances, const QList* outputs); ~BalancesTableModel(); int rowCount(const QModelIndex &parent) const; int columnCount(const QModelIndex &parent) const; QVariant data(const QModelIndex &index, int role) const; QVariant headerData(int section, Qt::Orientation orientation, int role) const; private: QList>* modeldata; QList* utxos; }; #endif // BALANCESTABLEMODEL_H