cpp-signal icon indicating copy to clipboard operation
cpp-signal copied to clipboard

Header-only pure C++11 library providing signal and slot functionality

Results 1 cpp-signal issues
Sort by recently updated
recently updated
newest added

Here library calls foreign callbacks under mutex lock: ```cpp template void call(TCallArgs&&... args) { lock_guard lock(*this); for (const auto& slot : slots_) { if (!slot.call) continue; TSlot(slot.key).call(std::forward(args)...); } } template...