tags:

views:

96

answers:

1

Well, sorry if my english isn't very good, second, in c++ how i can make events?, is something that i can't find as much i searched, and i think that it could help me a lot to make me the things a little easier with the college.

Thanks for your answers.

+1  A: 

If you are looking for the type of "events" whereby clients can set up callbacks to themselves when things happen, check out the Boost Signals2 Library.

If you are looking for the Win32 "event" synchronization object, see the MSDN documentation.

Also check out Custom events in C++.

Kristopher Johnson