Skip to content

Commit 8a0cb17

Browse files
committed
README: Rename to README.md and reformat as markdown
And remove: - the description of the directory structure, which is outdated and not very useful. - the contact information section. There is no need to duplicate what is on the website, which we link to.
1 parent 8d7e37e commit 8a0cb17

File tree

2 files changed

+24
-56
lines changed

2 files changed

+24
-56
lines changed

README

Lines changed: 0 additions & 56 deletions
This file was deleted.

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# libsigc++ -- The Typesafe Callback Framework for C++
2+
3+
4+
## Introduction
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+
See the [libsigc++ web site](https://libsigcplusplus.github.io/libsigcplusplus/)
15+
16+
## License
17+
18+
Distribution of library and components is under the LGPL as listed in the
19+
file COPYING. Examples and tests are Public Domain.
20+
21+
# Compatibility
22+
23+
Compatible compilers must support C++17, such as the decltype(auto) specifier
24+
(from C++14) and std::invoke().

0 commit comments

Comments
 (0)