Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:06

0001 // Copyright (c) 2016 Klemens D. Morgenstern
0002 //
0003 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0004 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 
0007 #ifndef BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
0008 #define BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
0009 
0010 
0011 namespace boost
0012 {
0013 namespace process
0014 {
0015 namespace detail
0016 {
0017 namespace posix
0018 {
0019 
0020 template<class StringType, class Executor>
0021 inline void apply_exe(const StringType & exe, Executor & e)
0022 {
0023     e.exe = exe.c_str();
0024 }
0025 
0026 }
0027 
0028 
0029 
0030 }
0031 }
0032 }
0033 
0034 
0035 
0036 #endif /* INCLUDE_BOOST_PROCESS_WINDOWS_ARGS_HPP_ */