mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
24 lines
601 B
C++
24 lines
601 B
C++
#ifndef H_TRANSACTIONTABLEMODEL
|
|
#define H_TRANSACTIONTABLEMODEL
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QStringList>
|
|
|
|
class TransactionTableModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TransactionTableModel(QObject *parent = 0);
|
|
|
|
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;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
private:
|
|
QStringList columns;
|
|
};
|
|
|
|
#endif
|
|
|