├── .gitignore ├── LICENCE ├── Makefile ├── README.md ├── lsignal.h ├── main.cpp └── tests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | lsignal 3 | 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/README.md -------------------------------------------------------------------------------- /lsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/lsignal.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/main.cpp -------------------------------------------------------------------------------- /tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp11nullptr/lsignal/HEAD/tests.cpp --------------------------------------------------------------------------------