MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / ToString

Method ToString

Code/BasicFilters/src/sitkPasteImageFilter.cxx:84–104  ·  view source on GitHub ↗

ToString

Source from the content-addressed store, hash-verified

82// ToString
83//
84std::string
85PasteImageFilter::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

Callers

nothing calls this directly

Calls 1

ToStringFunction · 0.85

Tested by

no test coverage detected