| 649 | } |
| 650 | |
| 651 | bool CustomFunctionInjector::CallWrapper(DivFunctions::CallProc next, uint32_t handle, OsiArgumentDesc * params) |
| 652 | { |
| 653 | auto it = osiToDivMappings_.find(handle); |
| 654 | |
| 655 | if (it != osiToDivMappings_.end()) { |
| 656 | return functions_.Call(it->second, *params); |
| 657 | } else { |
| 658 | return next(handle, params); |
| 659 | } |
| 660 | } |
| 661 | |
| 662 | bool CustomFunctionInjector::QueryWrapper(DivFunctions::CallProc next, uint32_t handle, OsiArgumentDesc * params) |
| 663 | { |
no test coverage detected