| 57 | |
| 58 | void SetExitCode(int code) noexcept { this->ExitCode = code; } |
| 59 | bool HasExitCode() const noexcept { return this->ExitCode.has_value(); } |
| 60 | void CleanExitCode() noexcept { this->ExitCode.reset(); } |
| 61 | int GetExitCode() const noexcept { return this->ExitCode.value_or(-1); } |
| 62 |
no test coverage detected