@brief Read the process standard output/error into the given String / Buffer
| 95 | struct StdStream |
| 96 | { |
| 97 | /// @brief Read the process standard output/error into the given String / Buffer |
| 98 | StdStream(IGrowableBuffer& destination) |
| 99 | { |
| 100 | growableBuffer = &destination; |
| 101 | operation = Operation::GrowableBuffer; |
| 102 | } |
| 103 | |
| 104 | /// @brief Redirects child process standard output/error to a given file descriptor |