| 137 | // -------------------------------------------------------------------------------------------------------------------- |
| 138 | |
| 139 | CProbeBatch::CProbeBatch(CContext* context) |
| 140 | { |
| 141 | auto _context = context->mHandle.get(); |
| 142 | if (!_context) |
| 143 | throw Exception(Status::Failure); |
| 144 | |
| 145 | new (&mHandle) Handle<ProbeBatch>(ipl::make_shared<ProbeBatch>(), _context); |
| 146 | } |
| 147 | |
| 148 | CProbeBatch::CProbeBatch(CContext* context, |
| 149 | ISerializedObject* serializedObject) |