Files
DCMV/DIDKit/App/Model/PropertyTableModel.h
2022-09-23 13:13:41 +08:00

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