| 76 | } |
| 77 | |
| 78 | IFaceFunction IFaceTableMixer::GetPropertyFuncByMessage(int message) const { |
| 79 | for (auto const &iface : ifaces) { |
| 80 | IFaceFunction ret = iface->GetPropertyFuncByMessage(message); |
| 81 | if (ret.value != -1) return ret; |
| 82 | } |
| 83 | return{ "invalid", -1, iface_void, { iface_void, iface_void } }; |
| 84 | } |
nothing calls this directly
no outgoing calls
no test coverage detected