| 52 | } |
| 53 | |
| 54 | const IFaceProperty *IFaceTableMixer::FindProperty(const char *name) const { |
| 55 | for (auto const &iface : ifaces) { |
| 56 | const IFaceProperty *ret = iface->FindProperty(name); |
| 57 | if (ret != nullptr) return ret; |
| 58 | } |
| 59 | return nullptr; |
| 60 | } |
| 61 | |
| 62 | int IFaceTableMixer::GetConstantName(int value, char *nameOut, unsigned nameBufferLen, const char *hint) const { |
| 63 | for (auto const &iface : ifaces) { |
nothing calls this directly
no outgoing calls
no test coverage detected