diff options
author | stakanviski <[email protected]> | 2022-02-10 16:50:01 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:01 +0300 |
commit | da8356a5535e6177965cba3bbae73c5fb28f6ccc (patch) | |
tree | 61a6bb4fa5e2c51ac92f621f5a9eba5658d8aba0 /util/system/shellcommand.h | |
parent | c345445ed6cb1fc34136ef6f02ce07f5aff9e504 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/shellcommand.h')
-rw-r--r-- | util/system/shellcommand.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/util/system/shellcommand.h b/util/system/shellcommand.h index 8730627fe5b..ff0f2d043c8 100644 --- a/util/system/shellcommand.h +++ b/util/system/shellcommand.h @@ -179,17 +179,17 @@ public: } /** - * @brief set if input stream should be closed after all data is read - * call SetCloseInput(false) for interactive process - * @param val if input stream should be closed - * @return self - */ - inline TShellCommandOptions& SetCloseInput(bool val) { - ShouldCloseInput = val; - return *this; - } - - /** + * @brief set if input stream should be closed after all data is read + * call SetCloseInput(false) for interactive process + * @param val if input stream should be closed + * @return self + */ + inline TShellCommandOptions& SetCloseInput(bool val) { + ShouldCloseInput = val; + return *this; + } + + /** * @brief set if command should be interpreted by OS shell (/bin/sh or cmd.exe) * shell is enabled by default * call SetUseShell(false) for command to be sent to OS verbatim @@ -457,13 +457,13 @@ public: */ TShellCommand& Wait(); - /** - * @brief close process' stdin - * - * @return self - */ - TShellCommand& CloseInput(); - + /** + * @brief close process' stdin + * + * @return self + */ + TShellCommand& CloseInput(); + /** * @brief Get quoted command (for debug/view purposes only!) **/ |