@brief Inherits child process Input from parent process
| 183 | struct Inherit{}; |
| 184 | |
| 185 | /// @brief Inherits child process Input from parent process |
| 186 | StdIn(GrowableBuffer<Inherit>) { operation = Operation::Inherit; } |
| 187 | StdIn(GrowableBuffer<StdIn>) { operation = Operation::Inherit; } |
| 188 | StdIn() { operation = Operation::Inherit; } |
nothing calls this directly
no outgoing calls
no test coverage detected