| 11 | #include <QUrl> |
| 12 | |
| 13 | bool ProcessUtil::execute(const QString &program, |
| 14 | const QStringList &arguments, |
| 15 | ProcessUtil::ReadCallBack func) |
| 16 | { |
| 17 | return ProcessUtil::execute(program, arguments, "", func); |
| 18 | } |
| 19 | |
| 20 | bool ProcessUtil::execute(const QString &program, |
| 21 | const QStringList &arguments, |
nothing calls this directly
no test coverage detected