| 40 | } |
| 41 | |
| 42 | void QmitkAbstractDataStorageInspector::SetNodePredicate(const mitk::NodePredicateBase* nodePredicate) |
| 43 | { |
| 44 | if (m_NodePredicate != nodePredicate) |
| 45 | { |
| 46 | m_NodePredicate = nodePredicate; |
| 47 | |
| 48 | this->Initialize(); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | const mitk::NodePredicateBase* QmitkAbstractDataStorageInspector::GetNodePredicate() const |
| 53 | { |
nothing calls this directly
no test coverage detected