name may be absolute or relative
| 15 | { |
| 16 | // name may be absolute or relative |
| 17 | inline std::string rootPath(const std::string& name) |
| 18 | { |
| 19 | return GlobalFileSystem().findRoot( |
| 20 | path_is_absolute(name.c_str()) ? name : GlobalFileSystem().findFile(name) |
| 21 | ); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | ModelImporterBase::ModelImporterBase(const std::string& extension) : |
no test coverage detected