| 116 | |
| 117 | |
| 118 | bool CustomQuery::Query(OsiArgumentDesc & params) |
| 119 | { |
| 120 | if (!ValidateArgs(params)) { |
| 121 | return false; |
| 122 | } |
| 123 | |
| 124 | return handler_(std::ref(params)); |
| 125 | } |
| 126 | |
| 127 | |
| 128 | FunctionHandle CustomFunctionManager::Register(std::unique_ptr<CustomCall> call) |
no test coverage detected