| 509 | } |
| 510 | |
| 511 | void testTypedef(std::function<void(UserId const& _return)> cob, const UserId thing) override { |
| 512 | UserId res = _delegate->testTypedef(thing); |
| 513 | cob(res); |
| 514 | } |
| 515 | |
| 516 | void testMapMap( |
| 517 | std::function<void(std::map<int32_t, std::map<int32_t, int32_t> > const& _return)> cob, |
nothing calls this directly
no test coverage detected