  |
The Function Pointer Tutorials - http://www.newty.de/fpt/
Introduction to C and C++ function pointers, callbacks and functors by Lars Haendel. |
  |
Callbacks in C++ Using Template Functors - http://www.tutok.sk/fastgl/callback.html
A detailed paper by Rich Hickey on the concept of callbacks and the usage of template functors to realize them. |
  |
C++ Callback Solution - http://www.partow.net/programming/templatecallback/index.html
A solution to the problem of passing class methods as Callbacks in the C++ language using a template pattern. |
  |
myelin: Implementing delegates in C++ - http://www.myelin.co.nz/notes/callbacks/cpp-delegates.html
An implementation of .NET delegates with C# syntax in straight C++ using a preprocessor. |
  |
Callbacks in C++: The OO Way - http://www.etsimo.uniovi.es/cscene/topics/misc/cs7-04.xml.html
By Jurgen Hermann. What are Callbacks? A simple Thread class. Thread implementation. A real Thread class. |