File indexing completed on 2025-01-18 09:50:06
0001
0002
0003
0004
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