• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..01-Oct-2016-

sigc++/H01-Oct-2016-26,40712,743

AUTHORSH A D01-Oct-2016484 98

COPYINGH A D01-Oct-201625.9 KiB516435

ChangeLogH A D01-Oct-2016150.5 KiB4,3722,949

NEWSH A D01-Oct-201617.4 KiB507409

READMEH A D01-Oct-20162.8 KiB7552

config.h.inH A D01-Oct-20162.5 KiB8759

sigc++config.hH A D01-Oct-20162.6 KiB8246

sigc++config.h.inH A D01-Oct-20162.8 KiB9073

README

1libsigc++ -- The Typesafe Callback Framework for C++
2
3
4General information:
5
6   libsigc++ implements a typesafe callback system for standard C++. It
7   allows you to define signals and to connect those signals to any
8   callback function, either global or a member function, regardless of
9   whether it is static or virtual.
10
11   libsigc++ is used by gtkmm to wrap the GTK+ signal system. It does not
12   depend on GTK+ or gtkmm.
13
14   Further information is available on the libsigc++ project home page:
15   http://libsigc.sourceforge.net/
16
17
18License information:
19
20   Distribution of library and components is under the LGPL as listed in the
21   file COPYING. Examples and tests are Public Domain.
22
23
24Contact information:
25   Maintainer: mailto: murrayc@murrayc.com
26   Maillist: mailto: libsigc-list@gnome.org
27   Homepage: http://libsigc.sourceforge.net
28   Online reference documentation: https://developer.gnome.org/libsigc++/unstable/
29   Ftp: http://ftp.gnome.org/pub/GNOME/sources/libsigc++/
30   Git: https://git.gnome.org/browse/libsigc++2/
31
32
33Overview of the distribution:
34
35   docs/                             documentation on the signal system
36      docs/reference/                reference documentation
37
38   examples/                         examples of various signal functions
39
40   sigc++/                           source for library
41      sigc++/macros/                 .m4 files used to auto-generate source files
42      sigc++/functors/               source for library (various functors)
43      sigc++/functors/macros/        .m4 files used to auto-generate source files
44      sigc++/adaptors/               source for library (various adaptors)
45      sigc++/adaptors/macros/        .m4 files used to auto-generate source files
46      sigc++/adaptors/lambda/        source for library (lambda library, deprecated)
47      sigc++/adaptors/lambda/macros/ .m4 files used to auto-generate source files
48
49   build/                            auxiliary files for building
50
51   tests/                            programs testing and verifying proper behaviour
52
53   MSVC_Net2010/                     project files for building the library with MSVC++ 2010
54
55
56Compatibility:
57
58   Compatible compilers must supports the following C++ techniques:
59   * Partial template (class) specialization.
60   * Explicit template (member) function instantiation.
61   * Treat void return as normal return.
62
63   All releases are tested with the gcc compiler.
64   Release 2.3.2 has been tested with gcc 4.8.2, clang 3.4 and MS Visual C++ 2010.
65   It should also compile with:
66   * gcc >= 3.2
67   * cygwin (gcc >= 3.2)
68   * mingw32
69   * Microsoft Visual Studio .Net 2003
70   * Sun Forte C++ compiler >= 5.5
71   * Compaq C++ compiler
72   * Intel compiler
73   Please report any troubles you encounter with these compilers!
74   You are also invited to try a compiler that is not listed above.
75