| 21 | ~ListModel() override; |
| 22 | |
| 23 | inline auto rowCount(const QModelIndex& parent) const -> int override { return modpacks.size(); }; |
| 24 | inline auto columnCount(const QModelIndex& parent) const -> int override { return 1; }; |
| 25 | inline auto flags(const QModelIndex& index) const -> Qt::ItemFlags override { return QAbstractListModel::flags(index); }; |
| 26 |