ToString
| 82 | // ToString |
| 83 | // |
| 84 | std::string |
| 85 | PasteImageFilter::ToString() const |
| 86 | { |
| 87 | std::ostringstream out; |
| 88 | out << "itk::simple::PasteImageFilter\n"; |
| 89 | out << " SourceSize: "; |
| 90 | this->ToStringHelper(out, this->m_SourceSize); |
| 91 | out << std::endl; |
| 92 | out << " SourceIndex: "; |
| 93 | this->ToStringHelper(out, this->m_SourceIndex); |
| 94 | out << std::endl; |
| 95 | out << " DestinationIndex: "; |
| 96 | this->ToStringHelper(out, this->m_DestinationIndex); |
| 97 | out << std::endl; |
| 98 | out << " DestinationSkipAxes: "; |
| 99 | this->ToStringHelper(out, this->m_DestinationSkipAxes); |
| 100 | out << std::endl; |
| 101 | |
| 102 | out << ProcessObject::ToString(); |
| 103 | return out.str(); |
| 104 | } |
| 105 | |
| 106 | // |
| 107 | // Execute |
nothing calls this directly
no test coverage detected