ADTF
Loading...
Searching...
No Matches
process_impl.h
Go to the documentation of this file.
1
14
15#ifndef A_UTIL_UTIL_PROCESS_DETAIL_PROCESS_IMPL_HEADER_INCLUDED
16#define A_UTIL_UTIL_PROCESS_DETAIL_PROCESS_IMPL_HEADER_INCLUDED
17
19#include <cstdint>
20
21namespace a_util {
22namespace process {
23namespace detail {
24uint32_t execute(const a_util::filesystem::Path& executable_file,
25 const std::string& arguments,
26 const a_util::filesystem::Path& working_path,
27 std::string& std_out,
28 std::string& std_err);
29
30} // namespace detail
31} // namespace process
32} // namespace a_util
33
34#endif // A_UTIL_UTIL_PROCESS_DETAIL_PROCESS_IMPL_HEADER_INCLUDED
Serves as component for interaction with operating system processes.
Definition process.h:20
Serves as the root component, with common functionality documented in core functionality.
Definition base.h:24