diff options
Diffstat (limited to 'butl/process.ixx')
-rw-r--r-- | butl/process.ixx | 14 |
1 files changed, 14 insertions, 0 deletions
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) {} +} |