YSignalSlot
Header only c++ signal slot mechanism implemantation
...If slot(s) is/are disabled, signal can’t emit this/these slot(s).
- If slot which emitted is disabled or its return type is void, “emit” function returns “NULL” pointer.
- It works with member slot functions.
- It uses meta programming methods for “static for loop” and “static if”.
- Signals can be used nested.
- Receivers can be “this” pointer.
- It is free and LGPL licensed.
- It uses C++11 features.