| 105 | } |
| 106 | |
| 107 | void CSimulator::removeProbeBatch(IProbeBatch* probeBatch) |
| 108 | { |
| 109 | if (!probeBatch) |
| 110 | return; |
| 111 | |
| 112 | auto _probeBatch = reinterpret_cast<CProbeBatch*>(probeBatch)->mHandle.get(); |
| 113 | auto _simulator = mHandle.get(); |
| 114 | if (!_probeBatch || !_simulator) |
| 115 | return; |
| 116 | |
| 117 | _simulator->removeProbeBatch(_probeBatch); |
| 118 | } |
| 119 | |
| 120 | void CSimulator::setSharedInputs(IPLSimulationFlags flags, |
| 121 | IPLSimulationSharedInputs* sharedData) |
no test coverage detected