libsigc++ implements a full callback system for use in abstract interfaces and general programming. libsigc++ is the most complete library of its kind with the ability to connect an abstract callback to a class method, function, or function object.
It contains adaptor classes for connecting dissimilar callbacks and has an ease of use unmatched by other C++ callback libraries.
Here are some key features of "Libsigc++":
ˇ Compile time typesafe callbacks (faster than run time checks)
ˇ Typesafety violations report line number correctly with template names (no tracing template failures into headers)
ˇ No compiler extensions or meta compilers required
ˇ Proper handling of dynamic objects and signals (deleted objects will not cause seg faults)
ˇ Extendable API at any level: signal, slot, connection and trackable
ˇ Extensions do not require alteration of basic components
ˇ User definable accumulators
ˇ A variety of adaptors to change the callback signature: bind, hide, retype, compose and lambda call groups
ˇ Various compilers and platforms are supported: gcc, cygwin, mingw32, MS .NET 2003, Sun Forte C++, Compaq C++, Intel C++
libsigc++ is known to build and work with the following compilers:
ˇ g++ (>= 3.2, including Apple and Cygwin versions)
ˇ Microsoft Visual C++ .NET 2003
ˇ Intel C++ compiler
ˇ SUN Forte C++ CC
ˇ IBM AIX xlC
ˇ Tru64 C++
ˇ IRIX MIPSpro |