| 15 | namespace KDevMI { |
| 16 | |
| 17 | struct Model { |
| 18 | Model(); |
| 19 | Model(const QString& name, QSharedPointer<QStandardItemModel> model, QAbstractItemView* view); |
| 20 | bool operator==(const Model& m) const; |
| 21 | |
| 22 | QString name; |
| 23 | QSharedPointer<QStandardItemModel> model; |
| 24 | QAbstractItemView* view = nullptr; |
| 25 | }; |
| 26 | |
| 27 | class Models |
| 28 | { |