| 489 | } |
| 490 | |
| 491 | void testSet(std::function<void(std::set<int32_t> const& _return)> cob, |
| 492 | const std::set<int32_t>& thing) override { |
| 493 | std::set<int32_t> res; |
| 494 | _delegate->testSet(res, thing); |
| 495 | cob(res); |
| 496 | } |
| 497 | |
| 498 | void testList(std::function<void(std::vector<int32_t> const& _return)> cob, |
| 499 | const std::vector<int32_t>& thing) override { |