Initial checkin

This commit is contained in:
Aditya Kulkarni
2018-10-13 22:37:29 -07:00
parent 1fbfb28a40
commit 684edead71
38 changed files with 25051 additions and 0 deletions

24
balancestablemodel.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef BALANCESTABLEMODEL_H
#define BALANCESTABLEMODEL_H
#include "unspentoutput.h"
#include "precompiled.h"
class BalancesTableModel : public QAbstractTableModel
{
public:
BalancesTableModel(QObject* parent, const QMap<QString, double>* balances, const QList<UnspentOutput>* 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<std::tuple<QString, QString>>* modeldata;
QList<UnspentOutput>* utxos;
};
#endif // BALANCESTABLEMODEL_H