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

Updated examples

This commit is contained in:
Klemens Morgenstern
2016-04-18 16:03:21 +02:00
parent f9024439f0
commit d9edc26c6f
9 changed files with 139 additions and 57 deletions

View File

@@ -15,11 +15,11 @@ using namespace boost::process::initializers;
int main()
{
//[execute
execute(run_exe("test.exe"));
execute("test.exe");
//]
//[execute_path
boost::filesystem::path exe = "../test.exe";
execute(run_exe(exe));
execute(exe);
//]
}