From 32e8dbc3558a7b9ddecad50a9eb241b5e36f6c02 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 31 Aug 2015 13:51:55 +0200 Subject: Add ability for process to change child's working directory --- butl/process.ixx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 butl/process.ixx (limited to 'butl/process.ixx') diff --git a/butl/process.ixx b/butl/process.ixx new file mode 100644 index 0000000..0506793 --- /dev/null +++ b/butl/process.ixx @@ -0,0 +1,14 @@ +// file : butl/process.ixx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +namespace butl +{ + inline process:: + process (char const* args[], int in, int out, int err) + : process (nullptr, args, in, out, err) {} + + inline process:: + process (char const* args[], process& in, int out, int err) + : process (nullptr, args, in, out, err) {} +} -- cgit v1.1