| 152 | { |
| 153 | public: |
| 154 | inline CustomCall(std::string const & name, std::vector<CustomFunctionParam> params, |
| 155 | std::function<void (OsiArgumentDesc const &)> handler) |
| 156 | : CustomFunction(name, std::move(params)), handler_(handler) |
| 157 | {} |
| 158 | |
| 159 | bool Call(OsiArgumentDesc const & params); |
| 160 |
nothing calls this directly
no outgoing calls
no test coverage detected