2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-24 06:02:13 +00:00

updated docs

This commit is contained in:
klemens-morgenstern
2016-06-01 00:27:30 +02:00
parent e8c1ec4774
commit 07525fdd61
11 changed files with 765 additions and 139 deletions

View File

@@ -10,16 +10,15 @@
#include <boost/process.hpp>
using namespace boost::process;
using namespace boost::process::initializers;
int main()
{
//[execute
execute("test.exe");
child c("test.exe");
//]
//[execute_path
boost::filesystem::path exe = "../test.exe";
execute(exe);
child c(exe);
//]
}