16 lines
351 B
C++
16 lines
351 B
C++
#ifndef PROPERTYTABLEMODEL_H
|
|
#define PROPERTYTABLEMODEL_H
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
class PropertyTableModel : public QStandardItemModel
|
|
{
|
|
public:
|
|
explicit PropertyTableModel(QObject *parent = nullptr);
|
|
~PropertyTableModel() override;
|
|
void setModelData(int aRow,int aColumn,const QString& aData);
|
|
|
|
};
|
|
|
|
#endif // PROPERTYTABLEMODEL_H
|