| 651 | } |
| 652 | |
| 653 | tinyxml2::XMLElement* |
| 654 | mitk::DICOMReaderConfigurator |
| 655 | ::CreateConfigStringFromDICOMTag(tinyxml2::XMLDocument& doc, const DICOMTag& tag) const |
| 656 | { |
| 657 | auto tagElement = doc.NewElement("Tag"); // name group element |
| 658 | tagElement->SetAttribute("name", tag.GetName().c_str()); |
| 659 | tagElement->SetAttribute("group", toHexString(tag.GetGroup()).c_str()); |
| 660 | tagElement->SetAttribute("element", toHexString(tag.GetElement()).c_str()); |
| 661 | return tagElement; |
| 662 | } |
| 663 | |
| 664 | std::string |
| 665 | mitk::DICOMReaderConfigurator |
no test coverage detected