| 61 | } |
| 62 | |
| 63 | std::string |
| 64 | RemapPluginInfo::missingRequiredSymbolError(const std::string &pluginName, const char *required, const char *requiring) |
| 65 | { |
| 66 | std::string error; |
| 67 | error.assign("plugin ").append(pluginName).append(" missing required function ").append(required); |
| 68 | if (requiring) { |
| 69 | error.append(" if ").append(requiring).append(" is defined"); |
| 70 | } |
| 71 | return error; |
| 72 | } |
| 73 | |
| 74 | RemapPluginInfo::RemapPluginInfo(const fs::path &configPath, const fs::path &effectivePath, const fs::path &runtimePath) |
| 75 | : PluginDso(configPath, effectivePath, runtimePath) |