| 434 | } |
| 435 | |
| 436 | void testI32(std::function<void(int32_t const& _return)> cob, const int32_t thing) override { |
| 437 | int32_t res = _delegate->testI32(thing); |
| 438 | cob(res); |
| 439 | } |
| 440 | |
| 441 | void testI64(std::function<void(int64_t const& _return)> cob, const int64_t thing) override { |
| 442 | int64_t res = _delegate->testI64(thing); |