| 1396 | } |
| 1397 | |
| 1398 | static std::string joinRelativePath(const std::string &path1, const std::string &path2) |
| 1399 | { |
| 1400 | if (!path1.empty() && !Path::isAbsolute(path2)) |
| 1401 | return path1 + path2; |
| 1402 | return path2; |
| 1403 | } |
| 1404 | |
| 1405 | static std::list<std::string> readXmlStringList(const tinyxml2::XMLElement *node, const std::string &path, const char name[], const char attribute[]) |
| 1406 | { |
no test coverage detected