| 22 | } |
| 23 | |
| 24 | void Binding::setCallbackMaskExcept(const CallbackMask mask, const std::set<std::string> & blackList) |
| 25 | { |
| 26 | for (auto function : Binding::functions()) |
| 27 | { |
| 28 | if (blackList.find(function->name()) == blackList.end()) |
| 29 | { |
| 30 | function->setCallbackMask(mask); |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void Binding::addCallbackMask(const CallbackMask mask) |
| 36 | { |
nothing calls this directly
no test coverage detected