Event Listener News
Brought to you by:
frantz
Added support for VisualStudio (independent of qmake now)
Some compile bug fixed under Windows
Incorporate (in a generic way) multithreading support using mutex locker(with a default implementation using Qt thread). Of course, the implementation has to be cross-platform.
New version 1.2 with priority on connections. Also, functors supports up o 6 parameters.
A new version will be released soon. It will allow doing the following code:
class Event1: public Event {} ;
class S: public Subscriber {
public:
void event(Event1) {...}
} ;
Publisher p ;
S s ;
igs_connect(&p,&s, igs_functor(&s, S::event)) ;
p.igs_emit(Event1) ;