YSignalSlot
Header only c++ signal slot mechanism implemantation
YSignalSlot is a header only C++ library. It is an implementation of signal-slot mechanism via C++. It is similar to C++ signal, Boost::signal and SigSlot. It intensively uses C++11 features.
Advantages:
- Almost everything is compile-time. So it is fast.
- It can be used with single slot function or unlimited slot functions.
- “emit” function’s return type is pointer of your actual slot function’s return type and it can be any type.
- It supports “void” return type.
- Slot(s) can...