1Name: C++ Signal/Slot Library 2Short Name: sigslot 3URL: http://sigslot.sourceforge.net/ 4Version: 0 5Date: 2018-07-09 6License: Custom license 7License File: LICENSE 8Security Critical: yes 9 10Description: 11C++ Signal/Slot Library 12 13This file has been modified such that has_slots and signalx do not have to be 14using the same threading requirements. E.g. it is possible to connect a 15has_slots<single_threaded> and signal0<multi_threaded_local> or 16has_slots<multi_threaded_local> and signal0<single_threaded>. 17If has_slots is single threaded the user must ensure that it is not trying 18to connect or disconnect to signalx concurrently or data race may occur. 19If signalx is single threaded the user must ensure that disconnect, connect 20or signal is not happening concurrently or data race may occur. 21