0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-08 14:34:53 -05:00
bitcoin-core/TransactionTableModel.h
Wladimir J. van der Laan 4d27c96033 update
2011-05-08 16:30:10 +02:00

23 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