Registry / utility / boost-signals2

boost-signals2

JSON →
library1.90.0vcpkgunverified

Managed signals and slots callback implementation for C++.

vcpkg install boost-signals2
INSTALL
IMPORT
SIG · BOOST-SIGNALS2
B
boost-signals2
utilitycppv1.90.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

boost/signals2.hpp
#include <boost/signals2.hpp>

Basic signal-slot connection and invocation

#include <boost/signals2.hpp> #include <iostream> int main() { boost::signals2::signal<void()> sig; sig.connect([] { std::cout << "Hello from signal!\n"; }); sig(); return 0; }
Debug
Known issues
gotchaBoost.Signals2 is header-only but requires linking to Boost.System and Boost.Thread in some configurations.
fix
Ensure target_link_libraries includes Boost::signals2, Boost::system, and Boost::thread if using multi-threaded features.
affects: all
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
6
Meta
1
Amazon
1
Resources

No resource links recorded.

boost-signals2 — pip install boost-signals2 · libregistry