| 60 | } |
| 61 | |
| 62 | void Binding::removeCallbackMaskExcept(const CallbackMask mask, const std::set<std::string> & blackList) |
| 63 | { |
| 64 | for (auto function : Binding::functions()) |
| 65 | { |
| 66 | if (blackList.find(function->name()) == blackList.end()) |
| 67 | { |
| 68 | function->removeCallbackMask(mask); |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | Binding::SimpleFunctionCallback Binding::unresolvedCallback() |
| 74 | { |
nothing calls this directly
no test coverage detected