| 922 | } |
| 923 | |
| 924 | static void writeEmptyElement(XMLWriter& writer, const std::string& tagname, const std::string& attrname, const String& value) |
| 925 | { |
| 926 | AttributesImpl attrs; |
| 927 | attrs.addAttribute("", "", attrname, "", ucr::toUTF8(value)); |
| 928 | writer.emptyElement("", "", tagname, attrs); |
| 929 | } |
| 930 | |
| 931 | static void writeMethodElement(XMLWriter& writer, const std::string& tagname, const Method& method) |
| 932 | { |
no test coverage detected