mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
19 lines
291 B
C
19 lines
291 B
C
|
#ifndef QQTSTANDARDITEMMODEL_H
|
||
|
#define QQTSTANDARDITEMMODEL_H
|
||
|
|
||
|
#include <QStandardItemModel>
|
||
|
|
||
|
class QQTStandardItemModel : public QStandardItemModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit QQTStandardItemModel(QObject *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // QQTSTANDARDITEMMODEL_H
|