Blame README

Packit f47435
libsigc++ -- The Typesafe Callback Framework for C++
Packit f47435
Packit f47435
Packit f47435
General information:
Packit f47435
Packit f47435
   libsigc++ implements a typesafe callback system for standard C++. It
Packit f47435
   allows you to define signals and to connect those signals to any
Packit f47435
   callback function, either global or a member function, regardless of
Packit f47435
   whether it is static or virtual.
Packit f47435
Packit f47435
   libsigc++ is used by gtkmm to wrap the GTK+ signal system. It does not
Packit f47435
   depend on GTK+ or gtkmm.
Packit f47435
Packit f47435
   Further information is available on the libsigc++ project home page:
Packit f47435
   http://libsigc.sourceforge.net/
Packit f47435
Packit f47435
Packit f47435
License information:
Packit f47435
Packit f47435
   Distribution of library and components is under the LGPL as listed in the
Packit f47435
   file COPYING. Examples and tests are Public Domain.
Packit f47435
Packit f47435
Packit f47435
Contact information:
Packit f47435
   Maintainer: mailto: murrayc@murrayc.com
Packit f47435
   Maillist: mailto: libsigc-list@gnome.org
Packit f47435
   Homepage: http://libsigc.sourceforge.net
Packit f47435
   Online reference documentation: https://developer.gnome.org/libsigc++/unstable/
Packit f47435
   Download: http://ftp.gnome.org/pub/GNOME/sources/libsigc++/
Packit f47435
             https://download.gnome.org/sources/libsigc++/
Packit f47435
   Git: https://git.gnome.org/browse/libsigcplusplus/
Packit f47435
Packit f47435
Packit f47435
Overview of the distribution:
Packit f47435
Packit f47435
   docs/                             documentation on the signal system
Packit f47435
      docs/reference/                reference documentation
Packit f47435
   
Packit f47435
   examples/                         examples of various signal functions
Packit f47435
   
Packit f47435
   sigc++/                           source for library
Packit f47435
      sigc++/macros/                 .m4 files used to auto-generate source files
Packit f47435
      sigc++/functors/               source for library (various functors)
Packit f47435
      sigc++/functors/macros/        .m4 files used to auto-generate source files
Packit f47435
      sigc++/adaptors/               source for library (various adaptors)
Packit f47435
      sigc++/adaptors/macros/        .m4 files used to auto-generate source files
Packit f47435
   
Packit f47435
   build/                            auxiliary files for building
Packit f47435
   
Packit f47435
   tests/                            programs testing and verifying proper behaviour
Packit f47435
   
Packit f47435
   MSVC_Net2013/                     project files for building the library with MSVC++ 2013
Packit f47435
Packit f47435
Packit f47435
Compatibility:
Packit f47435
Packit f47435
   Compatible compilers must support C++11, such as the decltype() specifier.
Packit f47435
Packit f47435
   All releases are tested with the gcc (g++) compiler.
Packit f47435
   Release 2.3.2 has been tested with gcc 4.8.2, clang 3.4 and MS Visual C++ 2010.
Packit f47435
   Release 2.5.1 has been tested with gcc 4.9.2, clang 3.6.0 and MS Visual C++ 2013.