Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

basic_signal_set::basic_signal_set

Construct a signal set without adding any signals.

explicit basic_signal_set(
    boost::asio::io_service & io_service);
  » more...

Construct a signal set and add one signal.

basic_signal_set(
    boost::asio::io_service & io_service,
    int signal_number_1);
  » more...

Construct a signal set and add two signals.

basic_signal_set(
    boost::asio::io_service & io_service,
    int signal_number_1,
    int signal_number_2);
  » more...

Construct a signal set and add three signals.

basic_signal_set(
    boost::asio::io_service & io_service,
    int signal_number_1,
    int signal_number_2,
    int signal_number_3);
  » more...

PrevUpHomeNext