Reputation:
How should i create my own Events (This includes the code to bind the necessary callback) in c/C++ programming? It is directly available in Java.
Upvotes: 3
Views: 2280
Reputation: 39164
There aren't built-in events in C++, but if you don't want to reimplement your own classes, try boost signals.
Upvotes: 2