| 48 | {} |
| 49 | |
| 50 | std::string |
| 51 | ImageReaderBase ::ToString() const |
| 52 | { |
| 53 | std::ostringstream out; |
| 54 | out << " OutputPixelType: "; |
| 55 | this->ToStringHelper(out, this->m_OutputPixelType) << std::endl; |
| 56 | out << " LoadPrivateTags: "; |
| 57 | this->ToStringHelper(out, this->m_LoadPrivateTags) << std::endl; |
| 58 | out << " ImageIOName: "; |
| 59 | this->ToStringHelper(out, this->m_ImageIOName) << std::endl; |
| 60 | out << " Registered ImageIO:" << std::endl; |
| 61 | ioutils::PrintRegisteredImageIOs(out); |
| 62 | out << ProcessObject::ToString(); |
| 63 | return out.str(); |
| 64 | } |
| 65 | |
| 66 | |
| 67 | std::vector<std::string> |
nothing calls this directly
no test coverage detected