* @brief Executor::setEnvironment set environment variables * for executor processes * @param env */
| 318 | * @param env |
| 319 | */ |
| 320 | void Executor::setEnvironment(const QStringList &env) { |
| 321 | m_process.setEnvironment(env); |
| 322 | } |
| 323 | |
| 324 | auto Executor::environment() const -> QStringList { |
| 325 | return m_process.environment(); |