Skip to content

libsigc++ implements a typesafe callback system for standard C++. It allows you to define signals and to connect those signals to any callback function, either global or a member function, regardless of whether it is static or virtual.

License

Notifications You must be signed in to change notification settings

feizxz/libsigcplusplus

 
 

Repository files navigation

libsigc++ -- The Typesafe Callback Framework for C++


General information:

   libsigc++ implements a typesafe callback system for standard C++. It
   allows you to define signals and to connect those signals to any
   callback function, either global or a member function, regardless of
   whether it is static or virtual.

   libsigc++ is used by gtkmm to wrap the GTK+ signal system. It does not
   depend on GTK+ or gtkmm.

   Further information is available on the libsigc++ project home page:
   https://libsigcplusplus.github.io/libsigcplusplus/


License information:

   Distribution of library and components is under the LGPL as listed in the
   file COPYING. Examples and tests are Public Domain.


Contact information:
   Maintainer: mailto: [email protected]
   Maillist: mailto: [email protected]
   Homepage: https://libsigcplusplus.github.io/libsigcplusplus/
   Online reference documentation: https://developer.gnome.org/libsigc++/unstable/
   Download: http://ftp.gnome.org/pub/GNOME/sources/libsigc++/
             https://download.gnome.org/sources/libsigc++/
   Git: https://github.com/libsigcplusplus/libsigcplusplus
   Bug reports: https://github.com/libsigcplusplus/libsigcplusplus/issues


Overview of the distribution:

   docs/                             documentation on the signal system
      docs/reference/                reference documentation
   
   examples/                         examples of various signal functions
   
   sigc++/                           source for library
      sigc++/functors/               source for library (various functors)
      sigc++/adaptors/               source for library (various adaptors)
   
   build/                            auxiliary files for building
   
   tests/                            programs testing and verifying proper behaviour
   
   MSVC_NMake/                       NMake Makefiles for building the library with MSVC++ 2017 and later


Compatibility:

   Compatible compilers must support C++17, such as the decltype(auto) specifier
   (from C++14) and std::invoke().

About

libsigc++ implements a typesafe callback system for standard C++. It allows you to define signals and to connect those signals to any callback function, either global or a member function, regardless of whether it is static or virtual.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 83.7%
  • Makefile 6.1%
  • M4 5.5%
  • CMake 2.4%
  • C 1.8%
  • Shell 0.3%
  • Batchfile 0.2%