| 86 | } |
| 87 | |
| 88 | int QmitkDataStorageTreeModel::rowCount(const QModelIndex &parent) const |
| 89 | { |
| 90 | TreeItem *parentTreeItem = this->TreeItemFromIndex(parent); |
| 91 | return parentTreeItem->GetChildCount(); |
| 92 | } |
| 93 | |
| 94 | Qt::ItemFlags QmitkDataStorageTreeModel::flags(const QModelIndex &index) const |
| 95 | { |
nothing calls this directly
no test coverage detected