| 41 | } |
| 42 | |
| 43 | void Binding::addCallbackMaskExcept(const CallbackMask mask, const std::set<std::string> & blackList) |
| 44 | { |
| 45 | for (auto function : Binding::functions()) |
| 46 | { |
| 47 | if (blackList.find(function->name()) == blackList.end()) |
| 48 | { |
| 49 | function->addCallbackMask(mask); |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | void Binding::removeCallbackMask(const CallbackMask mask) |
| 55 | { |
nothing calls this directly
no test coverage detected