123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
- #define BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
- namespace boost
- {
- namespace process
- {
- namespace detail
- {
- namespace posix
- {
- template<class StringType, class Executor>
- inline void apply_exe(const StringType & exe, Executor & e)
- {
- e.exe = exe.c_str();
- }
- }
- }
- }
- }
- #endif
|