| 245 | } |
| 246 | |
| 247 | void AddFinishedLoadingStep(std::function<void()> step) |
| 248 | { |
| 249 | std::lock_guard<std::mutex> lock(finishLoadMutex); |
| 250 | if (loadingFinished) { |
| 251 | return; |
| 252 | } |
| 253 | |
| 254 | getFinishLoadSteps().emplace_back(step); |
| 255 | } |
| 256 | |
| 257 | void AddStartStep(std::function<void()> step) |
| 258 | { |
no outgoing calls
no test coverage detected