Table of Contents
Boost.Process is a library to manage system processes. It can be used to:
Here's a simple example of how to start a program with Boost.Process:
#include <boost/process.hpp> using namespace boost::process; using namespace boost::process::initializers; int main() { execute(run_exe("test.exe")); }
Caution | |
---|---|
This is not yet an official Boost C++ library. It wasn't reviewed and can't be downloaded from www.boost.org. It is however the latest version of an ongoing effort to create a process management library for Boost. For now the library can be downloaded from http://www.highscore.de/boost/process0.5/process.zip. |
Last revised: December 08, 2012 at 18:30:14 GMT |