#ifndef PROPERTYTABLEMODEL_H #define PROPERTYTABLEMODEL_H #include class PropertyTableModel : public QStandardItemModel { public: explicit PropertyTableModel(QObject *parent = nullptr); ~PropertyTableModel() override; void setModelData(int aRow,int aColumn,const QString& aData); }; #endif // PROPERTYTABLEMODEL_H