| 201 | } |
| 202 | |
| 203 | void AddPluginPostLoadStep(std::function<void()> step) |
| 204 | { |
| 205 | std::lock_guard<std::mutex> lock(mutex); |
| 206 | getPluginPostLoadSteps().emplace_back(step); |
| 207 | } |
| 208 | |
| 209 | void AddPluginCleanupStep(std::function<void()> step) |
| 210 | { |
no outgoing calls
no test coverage detected