| 146 | } |
| 147 | |
| 148 | bool ModelCache::isLoaded(const std::string& filePath) const |
| 149 | { |
| 150 | std::string key = normalizePath(filePath); |
| 151 | return _cache.find(key) != _cache.end(); |
| 152 | } |
| 153 | |
| 154 | std::shared_ptr<Poseidon::Model::Model> ModelCache::get(const std::string& filePath) const |
| 155 | { |
no test coverage detected