Files
DCMV/DIDKit/App/Model/PropertyTableModel.h

16 lines
351 B
C
Raw Normal View History

2022-09-23 13:13:41 +08:00
#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