| 762 | } |
| 763 | |
| 764 | std::string FileUtils::fullPathFromRelativeFile(std::string_view filename, std::string_view relativeFile) const |
| 765 | { |
| 766 | return std::string{relativeFile.substr(0, relativeFile.rfind('/') + 1)}.append(filename); |
| 767 | } |
| 768 | |
| 769 | const std::vector<std::string>& FileUtils::getSearchPaths() const |
| 770 | { |