| 691 | } |
| 692 | |
| 693 | tinyxml2::XMLElement* |
| 694 | mitk::DICOMReaderConfigurator |
| 695 | ::CreateDICOMFileReaderTag(tinyxml2::XMLDocument& doc, const DICOMFileReader* reader) const |
| 696 | { |
| 697 | auto readerTag = doc.NewElement("DICOMFileReader"); |
| 698 | readerTag->SetAttribute("class", reader->GetNameOfClass()); |
| 699 | readerTag->SetAttribute("label", reader->GetConfigurationLabel().c_str()); |
| 700 | readerTag->SetAttribute("description", reader->GetConfigurationDescription().c_str()); |
| 701 | readerTag->SetAttribute("version", "1"); |
| 702 | |
| 703 | return readerTag; |
| 704 | } |
no test coverage detected