Implementing Qt Signals and Slots in Pure C++
Signals and slots are my favourite Qt feature, as they make loose coupling between components or between layers super easy. I miss them most when I must write pure C++ code without the Qt goodies. I invite you to follow along while I translate signals and slots into function-object member variables and lambda functions, respectively.
Read More »Implementing Qt Signals and Slots in Pure C++