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

Method ToString

Code/IO/src/sitkImageViewer.cxx:542–562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

540
541
542std::string
543ImageViewer::ToString() const
544{
545 std::ostringstream out;
546
547 out << "itk::simple::ImageViewer" << std::endl;
548
549 out << " Title: " << this->GetTitle() << std::endl;
550
551 out << " Command: " << this->GetCommand() << std::endl;
552
553 out << " Application: " << this->GetApplication() << std::endl;
554 out << " Default Application: " << ImageViewer::GetGlobalDefaultApplication() << std::endl;
555 out << " File Extension: " << this->GetFileExtension() << std::endl;
556 out << " Default File Extension: " << ImageViewer::GetGlobalDefaultFileExtension() << std::endl;
557 out << " Search Path: " << ImageViewer::GetGlobalDefaultSearchPath() << std::endl;
558 out << " Executable Names: " << ImageViewer::GetGlobalDefaultExecutableNames() << std::endl;
559 out << " Debug Flag: " << ImageViewer::GetGlobalDefaultDebug() << std::endl;
560
561 return out.str();
562}
563
564//
565// The Execute method

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected