1 // Copyright (c) 2016 Klemens D. Morgenstern
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 
7 #ifndef BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
8 #define BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
9 
10 
11 namespace boost
12 {
13 namespace process
14 {
15 namespace detail
16 {
17 namespace posix
18 {
19 
20 template<class StringType, class Executor>
apply_exe(const StringType & exe,Executor & e)21 inline void apply_exe(const StringType & exe, Executor & e)
22 {
23     e.exe = exe.c_str();
24 }
25 
26 }
27 
28 
29 
30 }
31 }
32 }
33 
34 
35 
36 #endif /* INCLUDE_BOOST_PROCESS_WINDOWS_ARGS_HPP_ */
37