| 34 | }; |
| 35 | |
| 36 | int QmitkMAPAlgorithmModel::rowCount(const QModelIndex &parent) const |
| 37 | { |
| 38 | if (parent.isValid()) |
| 39 | { |
| 40 | return 0; |
| 41 | } |
| 42 | |
| 43 | return m_MetaProperties.size(); |
| 44 | } |
| 45 | |
| 46 | int QmitkMAPAlgorithmModel::columnCount(const QModelIndex &parent) const |
| 47 | { |
no test coverage detected