MCPcopy Create free account
hub / github.com/RGAA-Software/GoDesk / VisitAllPlugins

Method VisitAllPlugins

src/render/plugins/plugin_manager.cpp:336–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334 }
335
336 void PluginManager::VisitAllPlugins(const std::function<void(GrPluginInterface *)>&& visitor) {
337 for (const auto& [k, plugin] : plugins_) {
338 if (visitor) {
339 visitor(plugin);
340 }
341 }
342 }
343
344 void PluginManager::VisitStreamPlugins(const std::function<void(GrStreamPlugin *)>&& visitor) {
345 for (const auto& [k, plugin] : plugins_) {

Callers 10

EncodeMethod · 0.45
ProcessNetEventMethod · 0.45
ProcessHelloEventMethod · 0.45
ProcessHeartBeatMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected