| 481 | } |
| 482 | |
| 483 | void HitSetInt(OsiArgumentDesc const & args) |
| 484 | { |
| 485 | auto helper = HelperHandleToHelper(args[0].Int64); |
| 486 | auto prop = args[1].String; |
| 487 | auto value = args[2].Int32; |
| 488 | |
| 489 | if (helper == nullptr) return; |
| 490 | |
| 491 | helper->SetInt(prop, value); |
| 492 | } |
| 493 | |
| 494 | bool HitGetInt(OsiArgumentDesc & args) |
| 495 | { |
nothing calls this directly
no test coverage detected