mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
19 lines
278 B
C
19 lines
278 B
C
|
#ifndef ADDRESSTABLEMODEL_H
|
||
|
#define ADDRESSTABLEMODEL_H
|
||
|
|
||
|
#include <QAbstractTableModel>
|
||
|
|
||
|
class AddressTableModel : public QAbstractTableModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit AddressTableModel(QObject *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // ADDRESSTABLEMODEL_H
|