File indexing completed on 2025-04-19 08:42:35
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
0008 #define BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
0009
0010 #include <boost/process/v1/detail/config.hpp>
0011
0012 namespace boost
0013 {
0014 namespace process
0015 {
0016 BOOST_PROCESS_V1_INLINE namespace v1
0017 {
0018 namespace detail
0019 {
0020 namespace posix
0021 {
0022
0023 template<class StringType, class Executor>
0024 inline void apply_exe(const StringType & exe, Executor & e)
0025 {
0026 e.exe = exe.c_str();
0027 }
0028
0029 }
0030
0031
0032
0033 }
0034 }
0035 }
0036 }
0037
0038
0039 #endif