| 105 | |
| 106 | |
| 107 | bool CustomCall::Call(OsiArgumentDesc const & params) |
| 108 | { |
| 109 | if (!ValidateArgs(params)) { |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | handler_(std::ref(params)); |
| 114 | return true; |
| 115 | } |
| 116 | |
| 117 | |
| 118 | bool CustomQuery::Query(OsiArgumentDesc & params) |
no test coverage detected