| 208 | } |
| 209 | |
| 210 | void CProbeBatch::addProbeArray(IProbeArray* probeArray) |
| 211 | { |
| 212 | if (!probeArray) |
| 213 | return; |
| 214 | |
| 215 | auto _probeBatch = mHandle.get(); |
| 216 | auto _probeArray = reinterpret_cast<CProbeArray*>(probeArray)->mHandle.get(); |
| 217 | if (!_probeBatch || !_probeArray) |
| 218 | return; |
| 219 | |
| 220 | _probeBatch->addProbeArray(*_probeArray); |
| 221 | } |
| 222 | |
| 223 | void CProbeBatch::removeProbe(IPLint32 index) |
| 224 | { |