| 1608 | } |
| 1609 | |
| 1610 | TOPPBase::ExitCodes TOPPBase::runExternalProcess_(const QString& executable, const QStringList& arguments, const QString& workdir) const |
| 1611 | { |
| 1612 | String proc_stdout, proc_stderr; // collect all output (might be useful if program crashes, see below) |
| 1613 | return runExternalProcess_(executable, arguments, proc_stdout, proc_stderr, workdir); |
| 1614 | } |
| 1615 | |
| 1616 | TOPPBase::ExitCodes TOPPBase::runExternalProcess_(const QString& executable, const QStringList& arguments, String& proc_stdout, String& proc_stderr, const QString& workdir) const |
| 1617 | { |