| 492 | } |
| 493 | |
| 494 | bool HitGetInt(OsiArgumentDesc & args) |
| 495 | { |
| 496 | auto helper = HelperHandleToHelper(args[0].Int64); |
| 497 | auto prop = args[1].String; |
| 498 | auto & value = args[2].Int32; |
| 499 | |
| 500 | if (helper == nullptr) return false; |
| 501 | |
| 502 | return helper->GetInt(prop, value); |
| 503 | } |
| 504 | |
| 505 | void HitSetString(OsiArgumentDesc const & args) |
| 506 | { |
nothing calls this directly
no test coverage detected