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

Type definition default_process_launcher

default_process_launcher — The default launcher for processes.

Synopsis

// In header: <boost/process/v2/default_launcher.hpp>


typedef implementation_defined default_process_launcher;

Description

This launcher will be used by process if a process is launched through the constructor:

process proc("test", {});
// equivalent to
process prod = default_launcher()("test", {});


PrevUpHomeNext