summaryrefslogtreecommitdiff
path: root/boost/process/detail/posix/exe.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/process/detail/posix/exe.hpp')
-rw-r--r--boost/process/detail/posix/exe.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/boost/process/detail/posix/exe.hpp b/boost/process/detail/posix/exe.hpp
new file mode 100644
index 0000000000..9de68acc4e
--- /dev/null
+++ b/boost/process/detail/posix/exe.hpp
@@ -0,0 +1,36 @@
+// Copyright (c) 2016 Klemens D. Morgenstern
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+
+
+#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 /* INCLUDE_BOOST_PROCESS_WINDOWS_ARGS_HPP_ */