| 44 | } |
| 45 | |
| 46 | const IFaceFunction *IFaceTableMixer::FindFunctionByValue(int value) const { |
| 47 | for (auto const &iface : ifaces) { |
| 48 | const IFaceFunction *ret = iface->FindFunctionByValue(value); |
| 49 | if (ret != nullptr) return ret; |
| 50 | } |
| 51 | return nullptr; |
| 52 | } |
| 53 | |
| 54 | const IFaceProperty *IFaceTableMixer::FindProperty(const char *name) const { |
| 55 | for (auto const &iface : ifaces) { |
nothing calls this directly
no outgoing calls
no test coverage detected