| 179 | } |
| 180 | |
| 181 | void PluginManager::ReleaseAllPlugins() { |
| 182 | for (const auto& [k, plugin] : plugins_) { |
| 183 | plugin->OnStop(); |
| 184 | plugin->OnDestroy(); |
| 185 | } |
| 186 | plugins_.clear(); |
| 187 | } |
| 188 | |
| 189 | void PluginManager::ReleasePlugin(const std::string &name) { |
| 190 |