ToString
| 55 | // ToString |
| 56 | // |
| 57 | std::string |
| 58 | CastImageFilter::ToString() const |
| 59 | { |
| 60 | std::ostringstream out; |
| 61 | out << "itk::simple::CastImageFilter\n" |
| 62 | << "\tOutputPixelType: " << this->m_OutputPixelType << std::endl; |
| 63 | out << ProcessObject::ToString(); |
| 64 | return out.str(); |
| 65 | } |
| 66 | |
| 67 | // |
| 68 | // Set/Get Methods for output pixel type |
nothing calls this directly
no test coverage detected