| 1039 | |
| 1040 | |
| 1041 | std::string XMLWriter::nameToString(const XMLString& localName, const XMLString& qname) |
| 1042 | { |
| 1043 | if (qname.empty()) |
| 1044 | return fromXMLString(localName); |
| 1045 | else |
| 1046 | return fromXMLString(qname); |
| 1047 | } |
| 1048 | |
| 1049 | |
| 1050 | XMLString XMLWriter::uniquePrefix() |
nothing calls this directly
no test coverage detected