| 37 | // -------------------------------------------------------------------------------------------------------------------- |
| 38 | |
| 39 | CProbeArray::CProbeArray(CContext* context) |
| 40 | { |
| 41 | auto _context = context->mHandle.get(); |
| 42 | if (!_context) |
| 43 | throw Exception(Status::Failure); |
| 44 | |
| 45 | new (&mHandle) Handle<ProbeArray>(ipl::make_shared<ProbeArray>(), _context); |
| 46 | } |
| 47 | |
| 48 | IProbeArray* CProbeArray::retain() |
| 49 | { |