| 967 | |
| 968 | |
| 969 | void XMLWriter::writeMarkup(const std::string& str) const |
| 970 | { |
| 971 | #if defined(XML_UNICODE_WCHAR_T) |
| 972 | const XMLString xmlString = toXMLString(str); |
| 973 | writeXML(xmlString); |
| 974 | #else |
| 975 | _pTextConverter->write(str.data(), (int) str.size()); |
| 976 | #endif |
| 977 | } |
| 978 | |
| 979 | |
| 980 | void XMLWriter::writeXML(const XMLString& str) const |
nothing calls this directly
no test coverage detected