2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-24 18:12:36 +00:00

small fix and updated examples

This commit is contained in:
klemens-morgenstern
2016-06-04 21:10:13 +02:00
parent d5acf8713d
commit b5180b869b
20 changed files with 86 additions and 183 deletions

View File

@@ -14,11 +14,11 @@ using namespace boost::process;
int main()
{
//[execute
child c("test.exe");
child c1("test.exe");
//]
//[execute_path
boost::filesystem::path exe = "../test.exe";
child c(exe);
child c2(exe);
//]
}