| 474 | } |
| 475 | |
| 476 | void testMap(std::function<void(std::map<int32_t, int32_t> const& _return)> cob, |
| 477 | const std::map<int32_t, int32_t>& thing) override { |
| 478 | std::map<int32_t, int32_t> res; |
| 479 | _delegate->testMap(res, thing); |
| 480 | cob(res); |
| 481 | } |
| 482 | |
| 483 | void testStringMap( |
| 484 | std::function<void(std::map<std::string, std::string> const& _return)> cob, |