| 166 | { |
| 167 | public: |
| 168 | inline CustomQuery(std::string const & name, std::vector<CustomFunctionParam> params, |
| 169 | std::function<bool(OsiArgumentDesc &)> handler) |
| 170 | : CustomFunction(name, std::move(params)), handler_(handler) |
| 171 | {} |
| 172 | |
| 173 | bool Query(OsiArgumentDesc & params); |
| 174 |
nothing calls this directly
no outgoing calls
no test coverage detected