| 284 | } |
| 285 | |
| 286 | void CSource::remove(ISimulator* simulator) |
| 287 | { |
| 288 | if (!simulator ) |
| 289 | return; |
| 290 | |
| 291 | auto _simulator = static_cast<CSimulator*>(simulator)->mHandle.get(); |
| 292 | auto _source = mHandle.get(); |
| 293 | if (!_simulator || !_source) |
| 294 | return; |
| 295 | |
| 296 | _simulator->removeSource(_source); |
| 297 | } |
| 298 | |
| 299 | void CSource::setInputs(IPLSimulationFlags flags, |
| 300 | IPLSimulationInputs* inputs) |
nothing calls this directly
no test coverage detected