| 7 | namespace QodeAssist::TaskFlow { |
| 8 | |
| 9 | TaskModel::TaskModel(Flow *flow, QObject *parent) |
| 10 | : QAbstractListModel(parent) |
| 11 | , m_flow(flow) |
| 12 | {} |
| 13 | |
| 14 | int TaskModel::rowCount(const QModelIndex &parent) const |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected