MCPcopy Create free account
hub / github.com/MITK/MITK / PrintOutputs

Method PrintOutputs

Modules/DICOM/src/mitkDICOMFileReader.cpp:146–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144
145
146void
147mitk::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
162const mitk::DICOMImageBlockDescriptor&

Callers 4

mainFunction · 0.80
LoadFilesMethod · 0.80

Calls 2

sizeMethod · 0.45
PrintMethod · 0.45

Tested by 3

LoadFilesMethod · 0.64