| 444 | } |
| 445 | |
| 446 | void testDouble(std::function<void(double const& _return)> cob, const double thing) override { |
| 447 | double res = _delegate->testDouble(thing); |
| 448 | cob(res); |
| 449 | } |
| 450 | |
| 451 | void testBinary(std::function<void(std::string const& _return)> cob, |
| 452 | const std::string& thing) override { |
nothing calls this directly
no test coverage detected