| 540 | |
| 541 | |
| 542 | std::string |
| 543 | ImageViewer::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 |
nothing calls this directly
no outgoing calls
no test coverage detected