171 - Validate address

This commit is contained in:
Aditya Kulkarni
2019-07-24 10:23:59 -07:00
parent 6ec435c8ca
commit 72a4f40c03
9 changed files with 219 additions and 4 deletions

23
src/validateaddress.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef VALIDATEADDRESS_H
#define VALIDATEADDRESS_H
#include "precompiled.h"
class ValidateAddressesModel : public QAbstractTableModel {
public:
ValidateAddressesModel(QTableView* parent, QList<QPair<QString, QString>> props);
~ValidateAddressesModel() = default;
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<QPair<QString, QString>> props;
QStringList headers;
};
#endif // VALIDATEADDRESS_H