Trampoline for virtual function
| 157 | |
| 158 | // Trampoline for virtual function |
| 159 | std::shared_ptr<Solver> clone() const override |
| 160 | { |
| 161 | PYBIND11_OVERLOAD_PURE( |
| 162 | std::shared_ptr<Solver>, // Return type |
| 163 | Solver, // Parent class |
| 164 | clone, // Name of function in C++ (must match Python name) |
| 165 | ); |
| 166 | } |
| 167 | }; |
| 168 | |
| 169 | ::py::class_< |
no outgoing calls
no test coverage detected