1 /*
2  * Copyright (C) 2014-2019 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 #ifndef _ardour_system_exec_h_
19 #define _ardour_system_exec_h_
20 
21 #include "ardour/libardour_visibility.h"
22 #include "pbd/system_exec.h"
23 
24 namespace ARDOUR {
25 
26 class LIBARDOUR_API SystemExec
27 	: public PBD::SystemExec
28 {
29 
30 public:
31 	SystemExec (std::string c, std::string a = "");
32 	SystemExec (std::string c, char ** a);
33 	SystemExec (std::string c, const std::map<char, std::string> subs);
34 	~SystemExec ();
35 
36 	int start (StdErrMode stderr_mode = IgnoreAndClose) {
37 		return PBD::SystemExec::start (stderr_mode, _vfork_exec_wrapper);
38 	}
39 
40 private:
41 	static char * _vfork_exec_wrapper;
42 
43 }; /* end class */
44 
45 }; /* end namespace */
46 
47 #endif /* _libpbd_system_exec_h_ */
48 
49 
50