| 42 | } |
| 43 | |
| 44 | void mitk::BaseDataSource::GraftNthOutput(unsigned int idx, OutputType *graft) |
| 45 | { |
| 46 | if (idx >= this->GetNumberOfIndexedOutputs()) |
| 47 | { |
| 48 | itkExceptionMacro(<< "Requested to graft output " << idx << " but this filter only has " |
| 49 | << this->GetNumberOfIndexedOutputs() |
| 50 | << " indexed Outputs."); |
| 51 | } |
| 52 | this->GraftOutput(this->MakeNameFromOutputIndex(idx), graft); |
| 53 | } |
| 54 | |
| 55 | bool mitk::BaseDataSource::Updating() const |
| 56 | { |
no test coverage detected