| 173 | } |
| 174 | |
| 175 | std::string SharedLibrary::GetFilePath(const std::string& name) const |
| 176 | { |
| 177 | if (!d->m_FilePath.empty()) return d->m_FilePath; |
| 178 | return GetLibraryPath() + PATH_SEPARATOR + GetPrefix() + name + GetSuffix(); |
| 179 | } |
| 180 | |
| 181 | void SharedLibrary::SetFilePath(const std::string& absoluteFilePath) |
| 182 | { |