| 208 | } |
| 209 | |
| 210 | TemporalControlWindow::Snapshot TemporalControlWindow::createSnapshot() |
| 211 | { |
| 212 | Snapshot result; |
| 213 | result.timestep = _simulationFacade->getCurrentTimestep(); |
| 214 | result.realTime = _simulationFacade->getRealTime(); |
| 215 | result.data = _simulationFacade->getSimulationData(); |
| 216 | result.parameters = _simulationFacade->getSimulationParameters(); |
| 217 | return result; |
| 218 | } |
| 219 | |
| 220 | |
| 221 | void TemporalControlWindow::applySnapshot(Snapshot const& snapshot) |
nothing calls this directly
no test coverage detected