| 78 | } |
| 79 | |
| 80 | void loadLibrary(const FilePath& file, DocumentPtr doc, const FileSearchPath& searchPath, const XmlReadOptions* readOptions) |
| 81 | { |
| 82 | DocumentPtr libDoc = createDocument(); |
| 83 | readFromXmlFile(libDoc, file, searchPath, readOptions); |
| 84 | doc->importLibrary(libDoc); |
| 85 | } |
| 86 | |
| 87 | StringSet loadLibraries(const FilePathVec& libraryFolders, |
| 88 | const FileSearchPath& searchPath, |
no test coverage detected