| 100 | } |
| 101 | |
| 102 | void MacroConditionRun::SetTempVarValues() |
| 103 | { |
| 104 | SetTempVarValue("process.id", _procConfig.GetProcessId()); |
| 105 | SetTempVarValue("process.exitCode", _procConfig.GetProcessExitCode()); |
| 106 | SetTempVarValue("process.stream.output", |
| 107 | _procConfig.GetProcessOutputStream()); |
| 108 | SetTempVarValue("process.stream.error", |
| 109 | _procConfig.GetProcessErrorStream()); |
| 110 | } |
| 111 | |
| 112 | bool MacroConditionRun::Save(obs_data_t *obj) const |
| 113 | { |
nothing calls this directly
no test coverage detected