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