| 20 | #include "IFaceTableMixer.h" |
| 21 | |
| 22 | const IFaceConstant *IFaceTableMixer::FindConstant(const char *name) const { |
| 23 | for (auto const &iface : ifaces) { |
| 24 | const IFaceConstant *ret = iface->FindConstant(name); |
| 25 | if (ret != nullptr) return ret; |
| 26 | } |
| 27 | return nullptr; |
| 28 | } |
| 29 | |
| 30 | const IFaceFunction *IFaceTableMixer::FindFunction(const char *name) const { |
| 31 | for (auto const &iface : ifaces) { |
nothing calls this directly
no outgoing calls
no test coverage detected