| 358 | } |
| 359 | |
| 360 | std::optional<int> _SimulationFacadeImpl::getTpsRestriction() const |
| 361 | { |
| 362 | auto result = _worker.getTpsRestriction(); |
| 363 | return 0 != result ? std::optional<int>(result) : std::optional<int>(); |
| 364 | } |
| 365 | |
| 366 | void _SimulationFacadeImpl::setTpsRestriction(std::optional<int> const& value) |
| 367 | { |
nothing calls this directly
no outgoing calls
no test coverage detected