* @brief Executes a wrapper command. * @param id Process ID * @param app Application to execute * @param args Arguments * @param readStdout Whether to read stdout * @param readStderr Whether to read stderr */
| 94 | * @param readStderr Whether to read stderr |
| 95 | */ |
| 96 | void Pass::executeWrapper(PROCESS id, const QString &app, |
| 97 | const QStringList &args, bool readStdout, |
| 98 | bool readStderr) { |
| 99 | executeWrapper(id, app, args, QString(), readStdout, readStderr); |
| 100 | } |
| 101 | |
| 102 | void Pass::executeWrapper(PROCESS id, const QString &app, |
| 103 | const QStringList &args, QString input, |