| 206 | } |
| 207 | |
| 208 | std::vector<std::shared_ptr<Plugin>> GetRemotePlugins() |
| 209 | { |
| 210 | std::vector<std::shared_ptr<Plugin>> res; |
| 211 | for (const auto& plugin : _plugins) |
| 212 | { |
| 213 | const auto& metadata = plugin->GetMetadata(); |
| 214 | if (metadata.Type == PluginType::Remote) |
| 215 | { |
| 216 | res.push_back(plugin); |
| 217 | } |
| 218 | } |
| 219 | return res; |
| 220 | } |
| 221 | |
| 222 | void ClearParkStorage(); |
| 223 | std::string GetParkStorageAsJSON(); |
no test coverage detected