| 144 | |
| 145 | |
| 146 | void |
| 147 | mitk::DICOMFileReader |
| 148 | ::PrintOutputs(std::ostream& os, bool filenameDetails) const |
| 149 | { |
| 150 | os << "---- Outputs of DICOMFilereader " << (void*)this << " ----"<< std::endl; |
| 151 | |
| 152 | for (unsigned int o = 0; o < m_Outputs.size(); ++o) |
| 153 | { |
| 154 | os << "-- Output " << o << std::endl; |
| 155 | const DICOMImageBlockDescriptor& block = m_Outputs[o]; |
| 156 | block.Print(os, filenameDetails); |
| 157 | } |
| 158 | os << "---- End of output list ----" << std::endl; |
| 159 | } |
| 160 | |
| 161 | |
| 162 | const mitk::DICOMImageBlockDescriptor& |