| 587 | |
| 588 | void ResourceManager::setRuntimeTweaks(const Ref<ValdiRuntimeTweaks>& runtimeTweaks) { |
| 589 | std::lock_guard<Mutex> guard(_mutex); |
| 590 | _runtimeTweaks = runtimeTweaks; |
| 591 | } |
| 592 | |
| 593 | Ref<ValdiRuntimeTweaks> ResourceManager::getRuntimeTweaks() const { |
| 594 | std::lock_guard<Mutex> guard(_mutex); |
| 595 | return _runtimeTweaks; |
no outgoing calls
no test coverage detected