| 336 | } |
| 337 | |
| 338 | void readFromXmlString(DocumentPtr doc, const string& str, const FileSearchPath& searchPath, const XmlReadOptions* readOptions) |
| 339 | { |
| 340 | std::istringstream stream(str); |
| 341 | readFromXmlStream(doc, stream, searchPath, readOptions); |
| 342 | } |
| 343 | |
| 344 | // |
| 345 | // Writing |
no test coverage detected