On 8/19/2010 11:55 AM, Ajay wrote: > I would like to know about Event Driven Frameworks for C++ programming > language.Dot net is using delegates to raise an event.When the event is > raised,an event handler method will execute. > What are the other ways or frameworks to support event handling in C++? >
Pretty much every C++ GUI toolkit is event-driven, because that is how GUIs work. Check it out: http://qt.nokia.com/ http://www.wxwidgets.org/ http://www.gtk.org/ -- John Gaughan http://www.johngaughan.net/
