| 87 | } |
| 88 | |
| 89 | mitk::DataNode::Pointer QmitkDataStorageComboBox::GetSelectedNode() const |
| 90 | { |
| 91 | if (this->count() == 0) |
| 92 | return nullptr; |
| 93 | |
| 94 | int currentIndex = this->currentIndex(); |
| 95 | |
| 96 | return currentIndex >= 0 ? this->GetNode(currentIndex) : nullptr; |
| 97 | } |
| 98 | |
| 99 | mitk::DataStorage::SetOfObjects::ConstPointer QmitkDataStorageComboBox::GetNodes() const |
| 100 | { |
no test coverage detected