| 67 | |
| 68 | QModelIndex parent(const QModelIndex &index) const override { return QModelIndex(); } |
| 69 | int rowCount(const QModelIndex &parent = QModelIndex()) const override |
| 70 | { |
| 71 | return m_Ctx.GetResources().count(); |
| 72 | } |
| 73 | int columnCount(const QModelIndex &parent = QModelIndex()) const override { return 1; } |
| 74 | Qt::ItemFlags flags(const QModelIndex &index) const override |
| 75 | { |
nothing calls this directly
no test coverage detected