mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-11-15 19:48:02 +01:00
17 lines
472 B
C++
17 lines
472 B
C++
#ifndef VARTABLEMODEL_H
|
|
#define VARTABLEMODEL_H
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
class varTableModel: public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
varTableModel(QObject *parent = nullptr);
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
};
|
|
|
|
#endif // VARTABLEMODEL_H
|