ToString
| 61 | // ToString |
| 62 | // |
| 63 | std::string |
| 64 | ExtractImageFilter::ToString() const |
| 65 | { |
| 66 | std::ostringstream out; |
| 67 | out << "itk::simple::ExtractImageFilter\n"; |
| 68 | out << " Size: "; |
| 69 | this->ToStringHelper(out, this->m_Size); |
| 70 | out << std::endl; |
| 71 | out << " Index: "; |
| 72 | this->ToStringHelper(out, this->m_Index); |
| 73 | out << std::endl; |
| 74 | out << " DirectionCollapseToStrategy: "; |
| 75 | this->ToStringHelper(out, this->m_DirectionCollapseToStrategy); |
| 76 | out << std::endl; |
| 77 | |
| 78 | out << ProcessObject::ToString(); |
| 79 | return out.str(); |
| 80 | } |
| 81 | |
| 82 | // |
| 83 | // Execute |
nothing calls this directly
no test coverage detected