blob: 050679369d21ffefee0e2f44f206b827d9c85f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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) {}
}
|